标签:htm set 唯一性 标识 font title selector 文档 不同
选定所有对象
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ color: #FF0000; font-weight: bold; } </style> </head> <body> <div> <p>第一个段落。</p> <p>第二个段落。</p> <ul> <li>Java</li> <li>C#</li> </ul> </div> </body> </html>
以文档语言对象类型作为选择符
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> p{ color: #FF0000; font-weight: bold; } </style> </head> <body> <div> <p>第一个段落。</p> <p>第二个段落。</p> <ul> <li>Java</li> <li>C#</li> </ul> </div> </body> </html>
以唯一标识符id属性等于myid的E对象作为选择符
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #language{ color: #FF0000; font-weight: bold; } </style> </head> <body> <div> <p>第一个段落。</p> <p>第二个段落。</p> <ul id="language"> <li>Java</li> <li>C#</li> </ul> </div> </body> </html>
以class属性包含myclass的E对象作为选择符
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .a{ color: #0000FF; } .b{ font-weight:bold; font-size: x-large; } </style> </head> <body> <div> <p>第一个段落。</p> <p>第二个段落。</p> <ul class="a b"> <li>Java</li> <li>C#</li> </ul> </div> </body> </html>
标签:htm set 唯一性 标识 font title selector 文档 不同
原文地址:https://www.cnblogs.com/fengfuwanliu/p/10095510.html