请老师检查 谢谢
来源:3-12 编程练习
weixin_慕粉7014616
2019-12-25 21:20:46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>可设置宽和高的元素</title>
<style type="text/css">
div{ width:600px;height:200px;border:1px solid gray;font-size:14px;}
/*补充样式*/
p{width:30%;font-size:2em;}
span{width:30%;height:50px;}
input{width:100px;height:30px;background-color:orange;}
</style>
</head>
<body>
<div>
<p>登录</p>
<span>请输入您的信息:</span><input type="text" class="input"><br>
<input type="submit" class="sub">
</div>
</body>
</html>
1回答
同学你好,习题中给出的输入框以及按钮样式设置不要搞混哦:

参考修改:

如果我的回答帮助到了你,欢迎采纳,祝学习愉快~