我已经尝试调整这个两天了,但无法修复它。请帮帮我。我有这个CSS。它可以在 Chrome、IE 和 Opera 中正常工作,但不能在 firefox 中正常工作。这是链接:http: //jsfiddle.net/6p5vp/6/
这是我使用的类,它在除 Firefox 之外的其他浏览器中正常工作:
.main1 .row td
{
border-bottom: 1px dotted silver;
vertical-align:top;
padding:10px;
margin-bottom:20px;
margin-top:20px;
position:relative;
}
.main1 .row td .tick
{
bottom:0;
right:0;
text-align:right;
position:absolute;
}
这是标记:
<table class="main1">
<tr class="row">
<td>
<div>
<div>
All the text comes here All the text comes here All the text comes here All the text comes here
All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here
All the text comes here All the text comes here All the text comes here All the text comes here
All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here
All the text comes here All the text comes here All the text comes here All the text comes here
All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here All the text comes here
</div>
</div>
</td>
<td>
<div>
<div>
All the text comes here All the text comes here All the text comes here All the text comes here
</div>
<div class="tick">
<input type="checkbox"/>
</div>
</div>
</td>
</tr>
</table>
我想要的是根据第一列的高度在第二列的右下角出现一个复选框。就像是:
文本列 1 文本列 2
文本列 1
textincolumn1
textincolumn1
textincolumn1 复选框
请帮我改正。非常感谢你。