<table style="width:100%">
<tr>
<td>
<dx:ASPxButton ID="btnOk" runat="server" Text="ID">
</dx:ASPxButton>
</td>
</tr>
</table>
如何将“buttOn”对齐到td的右侧?
html(不是html5)中的是使用<td align="right">
但是在html5中我不知道。
答案 0 :(得分:1)
HTML5中不支持align属性。改用CSS。
<div class="right" >
<table style="width:100%">
<tr>
<td>
<dx:ASPxButton ID="btnOk" runat="server" Text="ID">
</dx:ASPxButton>
</td>
</tr>
</table>
</div>
CSS代码:
.right {
text-align: right;
}