私はこれを2日間微調整しようとしましたが、修正できませんでした。私を助けてください。私はこの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>
最初の列の高さに基づいて、2番目の列の右下隅にチェックボックスを表示させたいのです。何かのようなもの:
textincolumn1 textincolumn2
textincolumn1
textincolumn1textincolumn1textincolumn1
チェック
ボックスはこちら
訂正を手伝ってください。どうもありがとうございます。