我在这个小提琴中的另一个里面有 4 个 div 。我无法删除 class div 之间的空格toolbarItem
,
html
<div id="topPanelContainer">
<div id="toolbar">
<div id="toolbarItem1" class="toolbarItem"></div>
<div id="toolbarItem2" class="toolbarItem"></div>
<div id="toolbarItem3" class="toolbarItem"></div>
<div id="toolbarItem4" class="toolbarItem"></div>
</div>
</div>
CSS
#topPanelContainer {
height: 30px;
background: lightgrey;
text-align: center;
}
#toolbar{
height:30px;
width:800px;
background:grey;
margin: 0 auto;
}
.toolbarItem {
height: 30px; width: 100px;
background: blue;
display: inline-block;
position:relative;
margin: 0;
}
我希望四个 div 一个接一个地保持一个,而不是: