当前位置: 代码迷 >> HTML/CSS >> 选择框如何居中?
  详细解决方案

选择框如何居中?

热度:1307   发布时间:2014-03-01 00:36:54.0
选择框怎么居中??
<style type="text/css">
.box{ width:100px; height:50px; background:yellow;}
</style>




<div class="box">
<input type="checkbox" class="checkbox" />
</div>
<style type="text/css">
.box{ width:100px; height:50px; background:yellow;}
.box .checkbox{
vertical-align:middle;
margin:auto;

}
</style>
<div class="box">
<input type="checkbox" class="checkbox" style="height:48px;padding:0px"/>
</div>
  相关解决方案