css之display樣式,padding,margin

來源:互聯網
上載者:User

標籤:splay   恢複   技術   body   運行   藍色   title   meta   分享   

1. 塊級標籤變成行內標籤

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title></head><body>    <div style="background-color:red;display:inline;">123</div>    <span style="background-color:red">123</span></body></html>

 效果:

 

2. 行內標籤變成塊級標籤

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title></head><body>    <div style="background-color:red;display:inline;">123</div>    <span style="background-color:red;display:block;">123</span></body></html>

 運行結果:

 

3. display:none; 讓標籤消失。display:block/inline;標籤恢複。

 display: inline;

display:block;

display:inline-block; 兼有兩者的屬性(具有inline,預設自己有多少佔多少;具有block,可以設定高度,寬度等。)

   行內標籤:無法設定高度,寬度,編劇,padding, margin

   塊級標籤:可以設定高度,寬度,編劇,padding, margin。預設占父親標籤的100%

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title></head><body>    <span style="display:inline-block;background-color:red;height:50px;width:70px;">Alex</span>    <a style="background-color:red;">Eric</a></body></html>

 運行結果:

 

4.padding:內邊距 padding-top10px,

   margin:外邊距 margin-top:10px,(針對裡面div說的)藍色部分。div本身的大小沒有發生變化。只是它跟父親之間的距離變大了。

 

pading:內邊距,也是相對於內部的div來說的。(原意:填料)

 

5.margin的另一個用處:<body style="margin:0 auto;">

預設情況下html兩邊是有邊距的。就去掉了外邊距了。就從最角落起開始了。

<div style="width:980px; margin:0 auto">

 

css之display樣式,padding,margin

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.