我有桌子,其中第二列是120px宽。我希望第一列的宽度为100%(100%-120px),但在android上我不能使用CALC
函数。资料来源:http://caniuse.com/calc
<table>
<tr>
<td class="one">data</td>
<td class="two">data</td>
<tr>
<table>
.one { width: calc(100%-120px); }
.two { width: 120px; }
如何替换calc(100%-120px)
以便它可以在Android上运行?
注意:(我不知道宽度为100%)
答案 0 :(得分:4)
只需在.one
上设置宽度,或将其设置为auto
,然后将父表设置为100%
。这将导致带有.one
的td填充表格的剩余空间。
<table>
<tr>
<td class="one">data</td>
<td class="two">data</td>
<tr>
<table>
CSS
table {
width: 100%;
}
.one {
background-color: red;
}
.two {
background-color: orange;
width: 120px;
}
答案 1 :(得分:4)
答案 2 :(得分:1)
calc