html li background-color也用于列表标记

时间:2014-08-26 19:47:08

标签: html html-lists

我需要做什么,如果我想用背景颜色突出显示li元素,还列出标记? (观看插图)

enter image description here

感谢您的回答。

1 个答案:

答案 0 :(得分:1)

根据以往的经验,尽管问题本身信息稀缺,我建议:

li {
    /* moves the marker inside the 'li' elements, to be included
       within the backgrounded area: */
    list-style-position: inside;
    /* adjust to taste: */
    padding-left: 2em;
}
相关问题