我有一个应该很大的输入按钮。然而,在当前的 CSS 中,它只能扩展。高度没有被触及。
HTML:
<form action="feedback.cfm" method="POST">
<input type="hidden" name="send" value="mail" />
<input class="hugeButton" type="submit" value="Click Me To Send A SpreadSheet Report" />
</form>
CSS:
<style type="text/css">
.hugeButton {
width:100%;
height:45%;
font-size:x-large;
}
.hugeButton:hover {
cursor:pointer;
}
</style>
现在,如果我添加border:none
到我的.hugeButton
类中,height 属性将起作用。
所以我的问题是:为什么输入按钮的边框会“禁用”高度属性?
注意:我使用的是谷歌浏览器。