【代碼筆記】Web-CSS-CSS 分組和嵌套

一, 效果圖。html

二,代碼。post

 

複製代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS 分組和嵌套</title> <style> h1, h2, p { color: green; } .marked { background-color: red; } .marked p { color: white; } </style> </head> <body> <h1>hello </h1> <h2>span</h2> <p>this is a paragraph</p> <div class="marked"> <p>this is p</p> </div> </body> </html>
複製代碼

 

參考資料:《菜鳥教程》this

相關文章
相關標籤/搜索