CSS 参考手册
CSS .class 选择器
Select and style all elements with class="intro"
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> .intro { background-color: yellow; } </style> </head> <body> <h1>Welcome to My Homepage</h1> <div class="intro"> <p>My name is Donald.</p> <p>I live in Duckburg.</p> </div> <p>My best friend is Mickey.</p> </body> </html>
运行结果:
点击运行 »