我用display:block设置提交为什么还是设置不了高度啊?
已经转化了块级元素了吧,怎么还是设置不了高度,而且只能设置宽度?
2015-08-01
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>提交按钮</title> <style> .tj{display:block;width:200px;height:200px;} </style> </head> <body> <form method="post" action="save.php"> <label for="myName">姓名:</label> <input type="text" value=" " name="myName " /> <input type="submit" value="提交" name="submitBtn" class="tj"/> </form> </body> </html>
举报