了解按钮文本垂直对齐
考虑以下 HTML 标记和 CSS 样式:
<code class="html"><button class="button">Some Text</button>
<div class="button">Some Text</div></code>
登录后复制
<code class="css">.button {
background: darkgrey;
height: 40px;
border: 2px solid grey;
width: 100%;
box-sizing: border-box;
font-size: 14px;
font-family: helvetica;
text-align: center;
margin-bottom: 20px;
}</code>
登录后复制
应用这些样式时,您注意到