0
這是一個段落怎麼看起來像一個非樣式列表項(<li>
)內:處理內部列表項的段落用自定義CSS內容
<li>
<p>
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
</p>
</li>
然而,使用自定義列表時風格類型,它看起來是這樣的:
這樣做的HTML是:
<li class="docs-test">
<p>
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
hehehe
</p>
</li>
的CSS是:
.docs-test {
color: red;
list-style-type: none;
}
.docs-test::before {
content: '\2022 ';
color: #828282;
display: inline-block;
margin-right: 10px;
}
.docs-test p {
display: inline-block;
}
我知道,這個特殊的自定義列表樣式類型我可以用列表樣式圖像。但是,我有其他海關清單樣式類型,我不能使用list-style-image。
我該如何使自定義CSS內容列表樣式類型的列表項中的段落不會跳轉到下一個「行」的開頭?目標是讓這些自定義列表樣式列表以與沒有樣式的常規列表相同的方式處理段落。
http://jsbin.com/kimilaniga/1/edit?html,css,output
所以,你需要把子彈p標籤裏面的每一個字? –
@HemaNandagopal不,我只希望整個段落*不*跳躍,就好像在它之前有一個'
'標籤。基本上我希望它看起來像第一個圖像。我可以通過對列表項目使用'display:inline'來輕鬆地複製第一個圖像,但是它不適用於多個段落。 –
明白了。好,我的系統不支持img文件。你已經在js demo中使用了span,但是在這裏你使用了p標籤嗎? –