html如何让button与table对齐
推荐于2018-05-06 · 知道合伙人数码行家
关注
展开全部
html设定button的与下面的表格对齐的话,是可以通过margin来实现的使用截图工具,得到那个button与表格的距离,然后在设置margin值就可以了,这里我写一段代码:
<html>
<head>
<style>
button{
margin-left:20px; //假设是距离左边20px;
}
</style>
</head>
<body>
<input type="button" value='确认提交'>
<table>
<tr>
<td>文字1</td>
<td>文字2</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<style>
button{
margin-left:20px; //假设是距离左边20px;
}
</style>
</head>
<body>
<input type="button" value='确认提交'>
<table>
<tr>
<td>文字1</td>
<td>文字2</td>
</tr>
</table>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询