我刚刚做了一个包含 4 个 LI 元素的 UL 列表,我在 CSS 中做了这个:
ul li {
width:200px;/*problem*/
display:inline;
color:white;
background-color:red;
border-radius:5px;
font-family:verdana;
font-size:2em;
box-shadow:0 7px 0 #600;
padding:5px 20px;
margin:15px;
}
问题是 width 属性对 li 元素的宽度没有影响,如果我想做得更大,我必须在左右两侧添加填充,但这并不好,因为每个盒子都有不同的长度,因为有些字母比其他字母多。
为什么会这样?
谢谢,