當我使用此HTML/CSS顯示列表中的文本時正在應用填充寬度的額外空間位,我該如何解決這個問題?文本中額外的間距html
HTML
<ul class = "text_quotes">
<li class = "quote1"> 「text text text text text text text text text text text text text...</li>
<li class = "quote2"> 「text text text text text text text text text text text text text text text text...</li>
<li class = "quote3"> 「text text text text text text text text text text text text text text text text...</li>
<li class = "quote4"> 「text text text text text text text text text text text text text text text...</li>
</ul>
CSS
.text_quotes li{
display:inline block;
position: relative;
bottom: 10px;
text-align:justify;
font-size: smaller;
font-style:none;
margin-bottom: -100px;
margin-right: 100px;
float: center;
font-family: avenir;
min-width: 60px;
max-width: 100px;
list-style: none;
min-height: auto;
max-height: auto;
}
編輯:我定我的錯誤大衛,但仍有增加的空間很像詞,當你申請一個大小段落。原諒我我從來沒有寫過HTML,我只用過C++,Python和C,所以這對我來說是非常新的。
您可能有更多樣式是從其他來源或默認瀏覽器樣式應用的。你需要重寫它。 – DrCord
'ul.text_quotes {padding:0}'? – Bigood
我認爲你需要首先解決你的CSS中的所有錯誤。 'display:inline block'無效(應該是'inline-block'),'font-style:none'無效(應該是'normal'),'min-height:auto'無效(應該是'0' ),'max-height:auto'無效(應該是'none')。 – davidpauljunior