将日期对齐到td
框中的最右边,使用float:right;
它适用于 chrome 但不适用于 mozilla firefox....如何在下图中将日期对齐到最右边?日期和大小的位置<hr/>
随着内容的长度而变化。
对于 Mozilla,我想将左侧的标题和右侧的日期保持在同一行。
使用的代码:
<table id='cs'>
<tr>
<td>
<font size='4' id='heading'><b><U>heading</U></b></font>
<font size='2' style='float:right;'><i><b >Date: </b>date</i></font><br/>
Test Content<br/><hr/>
Signature<br/>
</td></tr></table>
id cs 有以下规则:
#cs{
border: 2px solid black;
padding: 4px 17px;
width: 100%;
height: auto;
margin-right: 20px;
margin-bottom: 10px;
display: inline-block;
background: #f0f4fc;
}
id 标题有以下规则:
#heading
{
text-transform:capitalize;
}