请问对吗?
<!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:25%;}
.input{width:100px;height:30px;background-color:orange;font-size:20px;}
</style>
</head>
<body>
<div>
<p>登录</p>
<span>请输入您的信息:</span><input type="text" class="input"><br>
<input type="submit" class="sub">
</div>
</body>
</html>
正在回答 回答被采纳积分+1
<!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;}
.input{width:30%;height:25%;}
.sub{width:100px;height:30px;background-color:orange;font-size:20px;}
span{width:600px;}
</style>
</head>
<body>
<div>
<p>登录</p>
<span>请输入您的信息:</span><input type="text" class="input"><br>
<input type="submit" class="sub">
</div>
</body>
</html>
不一定对,仅供参考。是给提交按钮设置颜色吧。
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星