亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Cascading styles

Cascading style

The code is as follows:

<!doctype html>
<html>
   <head>
      <meta charset="UTF-8">
      <title>測(cè)試層疊性</title>
      <style type="text/css">
         div{
            color:red;
         }  
         div{
            background-color:yellow;
         }
         div{
            font-size:24px;
         }
         div{
            background-color:green;
         }
      </style>
   </head>
   <body>
      <div>這是一個(gè)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