Posted on 2010-04-21 11:33
Neil's NoteBook 阅读(2328)
评论(2) 编辑 收藏
DIV中 包含按钮,实现按钮垂直居中的原理是:定义按钮的高度,然后设置按钮的margin,把DIV撑开后按钮就处于垂直居中的位置了
<div style="margin: 0px auto 0px auto; background-color: pink; text-align:center; width: 200px;">
<input type="button" value="测试按钮" style="height: 20px; margin-top: 90px; margin-bottom: 90px;" />
</div>