[![在此处输入图像说明] [1]] [1]
你可以看到文字是关闭上午
#main {
text-align: left;
margin-bottom: 10px;
display: inline-block;
width: 1280px;
padding: 10px;
margin: auto;
margin-top: 10px;
text-align: justify;
font-family: Century Gothic,sans-serif;
}
答案 0 :(得分:1)
使用css属性line-height: 14px;
设置文本
p {
line-height: 25px;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
我认为你需要css属性 line-height 。 在此文本的css容器中添加以下行:
line-height: 24px;
更改价值,看看会发生什么。
答案 3 :(得分:0)
这是因为您使用的字体系列。
尝试将此添加到您的css样式中:
letter-spacing: 2px; //spaces between letters
line-height: 15px; //spaces for each line of words
根据自己的喜好调整。
答案 4 :(得分:0)
添加line-height
。
#main {
font-size: 16px;
line-height: 24px;
text-align: left;
margin-bottom: 10px;
display: inline-block;
width: 1280px;
padding: 10px;
margin: auto;
margin-top: 10px;
text-align: justify;
font-family: Century Gothic,sans-serif;
}