CSS display

CSS displayhtml

行內標籤:沒法設置高度、寬度、邊距,padding,margin。
塊級標籤:可設置高度,寬度,邊距,padding,margin。spa

<html>
<body>

    <!-- display: inline;將塊級標籤轉換爲行內標籤-->
    <div style="background-color: red;display: inline;">xxx</div>

    <!-- display: block;將行內標籤轉換爲塊級標籤-->
    <span style="background-color: red;display: block;">xxx</span>

    <!-- display: inline-block; 便是行內標籤也是塊級標籤,二者特性相結合-->
    <span style="display: inline-block;background-color: red;height: 50px;width: 70px;">xxx</span>

    <!-- display: none; 讓標籤消失-->
    <span style="display: none;background-color: red;height: 50px;width: 70px;">xxx</span>

</body>
</html>

 

效果code


 

 

xxx

 

xxxhtm

 

xxxblog

 

xxxclass

 標籤被隱藏了....margin

相關文章
相關標籤/搜索