标签: html css
我得到<ul> list-style-image
<ul>
list-style-image
现在我的问题是我无法想象如何让文本在第二行文本的开头流动,而不是在图像下面(或任何类型的样式)。
- text - text - text how it is now - text - text - text how i want it
答案 0 :(得分:0)
这样写:
ul{ list-style-position:outside; }
答案 1 :(得分:0)
使用list-style-position属性并将其设置为外部:
ul { list-style-position: outside; }
<强> DEMO 强>