我有表,其中第二列是 120px 宽。我想第一列的宽度是剩下的 100%(100%-120px),但是在 android 上我不能使用CALC
函数。资料来源:http ://caniuse.com/calc
HTML:
<table>
<tr>
<td class="one">data</td>
<td class="two">data</td>
<tr>
<table>
CSS:
.one { width: calc(100%-120px); }
.two { width: 120px; }
问题:
如何更换calc(100%-120px)
才能在Android上运行?
注意:(我不知道宽度 100% )