CSS 文本左右对齐问题
发布网友
发布时间:2022-04-24 07:22
我来回答
共3个回答
热心网友
时间:2022-06-17 12:54
<style type="text/css">
.fl {float:left;}
.fr {float:right;}
</style>
<body>
<span class="fl">用户名:XXX </span>
<span class="fr">时间:2010年3月14日</span>
</body>
热心网友
时间:2022-06-17 12:54
<style type="text/css">
.tdr{ text-align:right;}
.tdl{ text-align:left;}
</style>
<body>
<table width="500" border="1">
<tr>
<td class="tdl">用户名:张三</td>
<td class="tdr">时间:2010年3月14日</td>
</tr>
</table>
</body>
热心网友
时间:2022-06-17 12:55
左右对齐就是两端对齐
text-align:justify
加这个属性就可以了