我想从状态栏中删除填充,并在文本上填充。
我在状态栏中添加了手动padding: 0;
,但它对它没有任何影响。
.list {
padding: 20px 0 20px;
border: 1px #666666 solid;
width: 250px;
}
.list > .status-bar {
background-color: red;
width: 20px;
display: inline-block;
}

<div class="list">
<span class="status-bar"> </span>Test 1
</div>
&#13;
答案 0 :(得分:2)
您可以使用此代码
HTML:
<div class="list">
<span class="status-bar"> </span>Test 1
</div>
CSS:
.list {
padding:0;
border: 1px #666666 solid;
width: 250px;
}
.list > .status-bar {
background-color: red;
width: 20px;
padding:20px;
display: inline-block;
height:100%;
}
答案 1 :(得分:1)
添加另一个范围并在类
中添加填充<div class="list">
<span class="status-bar"> </span>
<span clsss="l1"> Test 1 </span>
</div>
.l1{
padding: 0px 115px 0px 0px;
}
答案 2 :(得分:0)
从list
删除填充: