盒子模型(框模型)
一个盒子分为四部分
1.内容区(content)
2.内边距(padding)
3.边框(border)
4.外边距 (margin)
盒子的大小是由(内容区、内边距、边框)决定
.box{
width:100px;
height:100px;
background-color:#bfa;
border-width:10px;
border-color:red;
border-style:solid;
}
设置边框上下左右的宽度
.box{
boder-top-width:10px;
}
上top、下bottom、左left、右right
设置边框上下左右的颜色
.box{
border-top-color:
}
上top、下bottom、左left、右right
设置边框的形状
.box{
border-style:dotted;
}
dotted(点状)、dashed(虚线)、double(双线)、solid(实线)
边框
.box{
width:100px;
height:100px;
background-color:#bfa;
border-width:10px;
border-color:red;
border-style:solid;
}
如果不设置边框的宽度和颜色浏览器会默认为黑色3px;
边框的简写
.box{
width:100px;
height:100px;
background-color:#bfa;
border:10px red solid;
}
自定义边框颜色
.box{
width:100px;
height:100px;
background-color:#bfa;
border-top:10px solid red;
}
上top、下bottom、左left、右right
上下左都被设置就右面不会设置边框样式
.box{
width:100px;
height:100px;
background-color:#bfa;
border:10px red solid;
border-right:none;
}
内边距
.box{
width: 100px;
height: 100px;
background-color: #bbffaa;
border:red 10px solid;
padding-top: 20px;
padding-bottom:20px;
padding-left:20px;
padding-right:20px;
}
.box1{
width: 100%;
height: 100%;
background-color: orange;
}
注:内边距会影响盒子的大小
外边距
.box{
width: 100px;
height: 100px;
background-color: #bbffaa;
border:red 10px solid;
margin-top: 20px;
margin-bottom:20px;
margin-left:20px;
margin-right:20px;
}
.box1{
width: 100px;
height: 100px;
background-color: orange;
}
注:外边距会影响盒子的位置
margin外边距
可以设置"-"值
.box{
width: 100px;
height: 100px;
background-color: #bbffaa;
border:red 10px solid;
margin-top: -50px;
margin-bottom:-50px;
margin-left:-50px;
margin-right:-50px;
}
.box1{
width: 100px;
height: 100px;
background-color: orange;
}
给margin设置auto
.box{
width: 100px;
height: 100px;
background-color: #bbffaa;
border:red 10px solid;
margin-left:auto;
margin-right:auto;
margin: 0 auto;
}
.box1{
width: 100px;
height: 100px;
background-color: orange;
}
注:如果设定左外边距或者有外边距的话会把外边距设为最大,垂直方向设置auto相当于0,左右同时设置auto,就会居中
2018-11-22盒子模型和边框
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 2018.2.3 目标:身心健康,财富丰盛 好种子: 1早起健康早餐,种下健康的种子,回向群里姐妹及家人身心健康 ...
- 1、行间距(line-height): 行间距 = 行高-字体大小可以设置line-height可以间接的设置行高...
- 链接的4种状态 a:link{color: #232323;}a:visited{color: #121212;}...