1. 程式人生 > >css顏色三種形式

css顏色三種形式

<head>     <meta charset="UTF-8">     <title>Document</title>     <style>         li:first-child{             color:red;         }         li:nth-child(2){             color:#fab294;         }         .rgb{             /*color:rgb(0,0,255);*/             color:rgb(100%,0%,0%);         }

    </style> </head> <body>          <ul>         <li>預定義顏色</li>         <li>十六進位制</li>         <li class="rgb">rgb程式碼</li>     </ul> </body>