核心提示:margin 简写属性在一个声明中设置所有外边距属性。该属性可以有 1 到 4 个值。margin:10px 5px 15px 20px;上外边距是 10px右外边距是 5px下外边距是 15px左外...
margin 简写属性在一个声明中设置所有外边距属性。该属性可以有 1 到 4 个值。
margin:10px 5px 15px 20px;
上外边距是 10px
右外边距是 5px
下外边距是 15px
左外边距是 20px
width:100px;
设置元素的宽度
做一个简单的登录页面
<style>
.bb{border:2px solid red ;width: 600px;margin: 150px auto}
.textcenter{text-align: center}
.full{width:100%}
p{line-height:40px}
</style>
<form method="POST">
<p class="bb textcenter">
<p class="full">
请输入用户名:<input type="text" name="txtUserName"/>
</p>
<p class="full">
请输入密 码:<input type="password" name="txtUserPass"/>
</p>
<p class="full">
<input type="submit" value="登录"/>
</p>
</p>
</form>