在HTML 中,可以使用CSS 屬性margin-bottom 和margin-top 來調節段落之間的間距:margin-bottom 屬性設定段落底部間距,語法:margin-bottom: [值](例如, margin-bottom: 10px;)margin-top 屬性設定段落頂部間距,語法:margin-top: [值](例如,margin-top: 5%;)
在HTML 中,段落之間的間距可以透過CSS 屬性margin-bottom
和margin-top
來調節。
margin-bottom
屬性margin-bottom
屬性設定元素底部的外邊距,也就是元素與下方元素之間的間距。語法如下:
<code>margin-bottom: [值];</code>
其中,值
可以是百分比、像素或其他長度單位。例如,要設定段落底部間距為10 像素,可以使用下列CSS 程式碼:
<code>p { margin-bottom: 10px; }</code>
margin-top
屬性margin-top
屬性設定元素頂部的外邊距,也就是元素與上方元素之間的間距。語法與 margin-bottom
相同:
<code>margin-top: [值];</code>
例如,要設定段落頂部間距為 5%,可以使用以下 CSS 程式碼:
<code>p { margin-top: 5%; }</code>
以上是html段落之間的距離怎麼調的詳細內容。更多資訊請關注PHP中文網其他相關文章!