复制代码代码如下: <html> <head> <style type="text/css"> #para1 { text-align:center; color:red } </style> </head> <body> <p id="para1">Hello World!</p> <p>This paragraph is not affected by the style.</p> </body> </html>
看效果图,只有id为para1的P元素有效果。 Class也就是类选择器,可以表示一组元素的样式,id只对一个有效 [code] <html> <style> .cen {text-align: center} </style> <body> <h1 class="cen"> This heading will be center-aligned </h1> <p class="cen"> This paragraph will also be center-aligned. </p> </body> </html>