子弹在Chrome和IE中的位置

时间:2013-07-11 10:06:00

标签: css css3

我面临着子弹位置的问题 它在Firefox中看起来不错,但在Chrome和IE中它搞砸了

火狐:

enter image description here

铬/ IE:

enter image description here

这是显示div的css

background: url("/images/divider_right_top.jpg") no-repeat scroll left top transparent;
font-size: 12px;
margin-bottom: 20px;
overflow: auto;
padding: 20px;

3 个答案:

答案 0 :(得分:1)

你必须在css中直接设置UL:

#yourdiv ul{ list-position:outside; /*(or inside as you need)*/ 
             padding:20px;}

这应该有效

答案 1 :(得分:0)

不要设置填充。使用边距。

ul { margin: 1em 0; } li { margin: 0 0 0 1.4em }

答案 2 :(得分:0)

为列表元素提供CSS,如'

li
{
background: url(/images/divider_right_top.jpg) no-repeat left;
padding-left: 10px;
list-style-type: none;
}