CSS 参考手册
CSS .class 选择器
Style all <p> elements with class="hometown"
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> p.hometown { background: yellow; } </style> </head> <body> <p>My name is Donald.</p> <p class="hometown">I live in Ducksburg.</p> <p>My name is Dolly.</p> <p class="hometown">I also live in Ducksburg.</p> </body> </html>
运行结果:
点击运行 »