ここで問題が発生しました。これは、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;
}