明霞山资源网 Design By www.htccd.com
如何让你的html button本身居中呢? 这个很好找思路, 在其父标签中设置居中属性啊, 如下:
<html> <body> <center><button onClick="myClick()">hit me</button></center> <script> function myClick() { alert("123"); } </script> </body> </html>
或者:
<html> <body> <div align="center"><button onClick="myClick()">hit me</button></div> <script> function myClick() { alert("123"); } </script> </body> </html>
按钮水平居中
button是一个行内块级元素display:inline-block;
所以处理方式很简单,可以用以下两种方式:
方式一:
<div style="text-align:center"> <button>按钮居中</button> </div>
方式二:
<div> <button style="display:block;margin:0 auto">按钮居中</button> </div>
标签:
html,button,居中
明霞山资源网 Design By www.htccd.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
明霞山资源网 Design By www.htccd.com
暂无评论...