我正在使用插入 PHP 的网站主页上有一个表单。我的表单末尾有一个“提交”按钮,但该按钮不是特别大。我可以使用 CSS 调整按钮的宽度,但是我无法更改按钮的高度。有什么办法可以让我的按钮变大?
这是按钮的 HTML:
<form>
<input type="submit" value="Log In"/>
</form>
这是CSS:
input[type="submit"] {
width:20%; /*This works*/
height:80px; /*This does not work- the height does not adjust*/
}