html中表格内容居右的写法

style='text-align:right'

eg:

                    <tr>
	 					<th style='text-align:right'>所属机关</th>
	 					<td>
	 					<input class="easyui-validatebox" readonly="readonly"
						name="belong_office" id="belong_office"
						 />
	 					</td>
	 					<th style='text-align:right'>上级机关</th>
	 					<td>
	 					<input class="easyui-validatebox" readonly="readonly"
						name="higher_office" id="higher_office"
						 />
	 					</td>
					</tr>

设置高度:

<style type="text/css">
tr{height:0.8cm;}
</style>

猜你喜欢

转载自blog.csdn.net/l_degege/article/details/82781411