欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

html中上下間距怎么寫

錢諍諍2年前92瀏覽0評論

html中上下間距怎么寫?

html中段落之間有空行間距默認是有定距離,這個間距是margin-top與margin-bottom默認值,同時與line-height相關。

1、line-height設置段落上下間距

設置p標簽上下間距css代碼

p{ line-height:30px}

2、margin-top和margin-bottom設置段落上下間距

p{margin-top:10px;margin-bottom:10px}

經由對p標簽設置margin-top和margin-bottom,從而來設置段落上下間距。

3、段落上下間距設置實例

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>p段落上下間距隔絕距離配置實例 CSS5</title>

<style>

.abc{ line-height:20px; text-align:left}

.p-a p{ margin-top:30px; margin-bottom:30px}

.p-b p{ margin-top:60px; margin-bottom:60px}

</style>

</head>

<body>

<div class="abc">

<p>第一段</p>

<p>第二段</p>

<p>第三段</p>

<p>第四段</p>

</div>

css 文本間距,html中上下間距怎么寫