作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我创建了一个包含 2 列的 html 表格。我希望包含文本的第一列右对齐,但我希望第二列保持左对齐,因为它包含复选框。对于演示文稿,它会看起来,但我不知道。我尝试创建一个 td class="column1"然后 text-align: right;在 CSS 中,但运气不好。
任何想法将不胜感激。
HTML
<td class="column1">Retrieve Logs:</td>
<td class="column2"><input type=checkbox name="getcamlogs" checked="checked"></td>
CSS
td.column1 {
text-align: right;
}
最佳答案
给你,这应该有效:)
<style>
#mytable {width:500px; margin:0 auto;}
#mytable td {width:250px;}
#mytable .left {text-align:right; background:#333;}
#mytable .right {text-align:left; background:#666;}
</style>
<table id="mytable">
<tr>
<td class="left">1</td>
<td class="right">2</td>
</tr>
</table>
关于html - 在一个表中,右对齐一列,左对齐另一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7281482/
我是一名优秀的程序员,十分优秀!