国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Cascading styles

Cascading style

The code is as follows:

<!doctype html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>測試層疊性</title>
      <style type="text/css">
         div{
            color:red;
         }  
         div{
            background-color:yellow;
         }
         div{
            font-size:24px;
         }
         div{
            background-color:green;
         }
      </style>
   </head>
   <body>
      <div>這是一個div元素</div>
   </body>
</html>

The same attributes at the back will overwrite the previous ones .

The running results are as follows:

微信圖片_20180314160949.png

Continuing Learning
||
<?php echo "層疊樣式";
submitReset Code