ID有两个的后果
<html> <head> <title>ID选择器</title> <style type="text/css"> #one{ font-weight:bold; /* 粗体 */ } #two{ font-size:30px; /* 字体大小 */ color:#009900; /* 颜色 */ } </style> </head> <body> <p id="one">ID选择器1</p> <p id="two">ID选择器2</p> <p id="two">ID选择器3</p> <p id="one two">ID选择器3</p> </body> </html>
当id同时加入两个样式时,无效
本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/4984110.html,如需转载请自行联系原作者