0
如何在我的td中刪除我的div後的空間?如何在一個div使用「相對」位置時在我的td中刪除div後的空格?
以下是我的HTML和CSS。我試過在堆棧溢出中搜索其他解決方案,但在這種情況下它們似乎不起作用 - 可能是因爲第二個div的「相對」位置。
<table>
<tr>
<td>
<div class="progressBar"></div> //Updated dynamically using js
<div class="numericProgress>0%</div> //Updated dynamically using js
</td>
</tr>
</table>
CSS:
table
{
table-layout:fixed;
width:100%;
}
table,td,th
{
overflow:auto;
border-collapse:collapse;
text-align:center;
}
.progressBar
{
width:1%;
height:30px;
background: #A8E6F5;
}
.numericProgress
{
color: #123123;
font-size: 30px;
position: relative;
top: -31px;
}
如果你給.numericProgress位置:絕對和左:50%,它應該居中。 – badAdviceGuy