您好,登錄后才能下訂單哦!
這篇文章主要介紹css設置段落間距的方法是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
那么怎樣使用css margin 屬性設置文字的段落間距?
css margin可以實現上下段落之間間距距離樣式的設置,我們知道margin是設置上下左右對象與對象之間距離設置,這里段落也可以使用此css樣式實現間距。
下面我們通過簡單的代碼示例,為大家詳細解說關于css margin 屬性設置和調整文字段落間距的方法!
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>margin設置段落間距</title> <style> .cx{ margin: 20px 0; } /* css注釋: 設置margin為對象上下間距10px */ </style> </head> <body> <p>第一段,沒有設置間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p>第二段,沒有設置間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p class="cx">第三段,設置了間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> </body> </html>
效果圖:
其實,margin 屬性 是一個簡寫屬性,可以設置元素的所有外邊距,使用margin 屬性可以同時設置段落的上下間距。我們也可以一個一個設置外邊距,設置一個段落的上間距或下間距,方法如下:
margin-top:設置元素的上外邊距。
margin-bottom:設置元素的下外邊距。
下面我們通過簡單的代碼示例,為大家詳細解說實現方法!
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>margin設置段落間距</title> <style> *{margin: 0px;padding: 0px;} .a1{ margin-top: 20px; } .a2{ margin-bottom: 20px; } </style> </head> <body> <p>第一段,沒有設置間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p class="a1">第二段,單獨設置上間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p>第三段,沒有設置間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p class="a2">第四段,單獨設置下間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> <p>第五段,沒有設置間距。我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!我是一段測試代碼!</p> </body> </html>
效果圖:
以上是css設置段落間距的方法是什么的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。