我希望单个 td 的内容加下划线。此外,内容需要以两种方式对齐。左侧一个字段,右侧另一个字段。我怎样才能做到这一点?
问问题
410 次
2 回答
0
You can do this by specifically setting a width on the 'td' tag then encapsulate the right content on span or em tag.
For the HTML:
<td>Amount: <span>10.00 USD</span></td>
For the CSS
td{
display:block;
width:400px;
}
span{
float:right;
width:auto;
}
于 2013-04-29T08:29:25.567 回答
0
您必须在 td 上放置一个 id 并将文本分成两个跨度。第二个必须有一个“float:right”属性和一个特定的类。
代码可能如下所示:
CSS:
#myTd {
text-decoration: underlined;
}
#myTd>span.right {
float: right;
}
HTML:
...
<td id="myId">
<span>Amount :</span>
<span class="right">10.00 USD</span>
</td>
...
于 2013-04-29T08:15:00.797 回答