默默竹
2016-08-30 11:31
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
inpput{
width:100px;
}
</style>
</head>
<body>
<form>
<input type="text" name="a" value="nihao">
</form>
</body>
</html>
我这么写,可是浏览器效果没有任何变化
<style type="text/css">
//将行级标签转换为块级标签,就可以调整大小
input{ display:block; width:自己设置; height:自己设置; }
</style>
<input type = "text" name="a" value="nihao"/>
要先让input元素块化
inpput{
display:block;
width:100px;
}
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题