HTML如何调整Button的位置,如 靠左,居中,靠右等。
html中设置按钮的位置:
解决方案一:
如果是绝对定位,可以设置left,还可通过margin,padding等;
" style="box-sizing: border-box; margin: 0px; padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; color: rgb(51, 51, 51); font-size: 18.6773px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);"> <td style="padding-right:30px"><input type="submit" value="注册"> <input type="reset" value="重置"></td> </tr>
解决方案二:
如果是绝对定位,可以设置left,还可通过margin,padding等。
参考资料
阿里云.阿里云[引用时间2018-1-9]
1、首先新建一个html文件,命名为test.html,在test.html文件中,使用div标签创建一个模块,用于测试。
2、在test.html文件中,给div标签添加一个class属性,用于下面样式设置。
3、在css标签内,通过class设置div的样式 ,定义它的宽度为300px,高度为300px,并设置它的背景图片为1.png。
4、在css标签内,再通过将background-position属性设置为“center right”,实现背景图片靠右居中。
5、最后在浏览器打开test.html文件,查看实现的效果。