我在这里遇到了一个问题。这就是我用 html 和 css 设计的应用程序。问题在左下角用红色圆圈表示,即左标签前的空格。我无法删除此空间。这既不是填充也不是边距,但我不知道它是什么。
标签的代码是: html
<ul id="bottomTabs">
<li><a href="player_screen.html" class="left_tab">Player</a></li>
<li><a href="#">Reciters</a></li>
</ul>
css
ul {
margin: 0 ;
bottom: 0 ;
left: 0 ;
padding: 0;
}
li {
list-style-type: none;
bottom: 0 ;
left: 0 ;
margin-left:1em ;
}
#bottomTabs {
width: 100%;
bottom: 0px;
display: table;
position: fixed;
table-layout: fixed;
text-align: center;
}
#bottomTabs li {
width: 47.5%;
height: auto;
align : center;
display: table-cell;
padding-left: 1.5%;
vertical-align: bottom;
}
#bottomTabs a {
display: block;
color: #ffffff;
min-height: 100%;
padding: 4px 10px;
background-color: #222;
border-radius: 0 0 0 0;
}