css学习三大重点: css 盒子模型、 浮动、 定位
盒模型主体思路:边框、内边距、外边距
网页布局中,我们是如何把里面的文字,图片,按照美工给我们的效果图排列的整齐有序呢?
看透网页布局的本质:
首先利用CSS设置好盒子的大小,然后摆放盒子的位置。
最后把网页元素比如文字图片等等,放入盒子里面。
以上两步 就是网页布局的本质
我们明白了,盒子是网页布局的关键点,所以我们更应该弄明白 这个盒子有什么特点。
所谓盒子模型:
总结:
border : border-width || border-style || border-color
属性 | 作用 |
---|---|
border-width | 定义边框粗细,单位是px |
border-style | 边框的样式 |
border-color | 边框颜色 |
div {
width: 200px;
height: 200px;
background-color: red;
border-width: 10px;
border-style: solid;
border-color: green;
}
border : border-width border-style border-color
例如:
border: 1px solid red; 没有顺序
很多情况下,我们不需要指定4个边框,我们是可以单独给4个边框分别指定的。
上边框 | 下边框 | 左边框 | 右边框 |
---|---|---|---|
border-top-style:样式; | border-bottom-style:样式; | border-left-style:样式; | border-right-style:样式; |
border-top-width:宽度; | border- bottom-width:宽度; | border-left-width:宽度; | border-right-width:宽度; |
border-top-color:颜色; | border- bottom-color:颜色; | border-left-color:颜色; | border-right-color:颜色; |
border-top:宽度 样式 颜色; | border-bottom:宽度 样式 颜色; | border-left:宽度 样式 颜色; | border-right:宽度 样式 颜色; |
注意:
当盒子添加外边框之后,会变大,给容器的宽和高是给内容设置的。
border-top-color: green;
border-top-width: 5px;
border-top-style: solid;
border-top: 20px solid orange;
border-bottom: none solid blue;
border-right: 20px solid orchid;
border-left: 20px solid green;
其中每一个值可以为 数值或百分比的形式。
border-radius:length;
/* border-radius: 50%; */
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
/* border-radius: 50px; */
border-radius: 50%;
}
style>
head>
<body>
<div class="box">div>
body>
html>
制作如下圆角边框
<style>
.box {
width: 100px;
height: 50px;
background-color: red;
/* 高度的一半 */
border-radius: 25px;
text-align: center;
line-height: 50px;
color: white;
}
style>
<body>
<div class="box">
新人福利
div>
body>
制作如下圆角边框
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
border-top-right-radius: 100px;
}
style>
head>
<body>
<div class="box">div>
body>
html>
属性 | 作用 |
---|---|
padding-left | 左内边距 |
padding-right | 右内边距 |
padding-top | 上内边距 |
padding-bottom | 下内边距 |
代码:
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 400px;
height: 400px;
background-color: red;
border-top: 20px solid orange;
border-left: 20px solid blue;
border-bottom: 20px solid green;
border-right: 20px solid rebeccapurple;
font-size: 40px;
/* 内边距距顶部30像素 */
padding-top: 30px;
/* 内边距距右部30像素 */
padding-right: 40px;
/* 内边距距底部30像素 */
padding-bottom: 40px;
/* 内边距距左部30像素 */
padding-left: 40px;
}
style>
head>
<body>
<div class="box">我就是一个内边距盒子啊div>
body>
html>
当我们给盒子指定padding值之后, 发生了2件事情:
注意: 后面跟几个数值表示的意思是不一样的。
我们分开写有点麻烦,我们可以不可以简写呢?
值的个数 | 表达意思 |
---|---|
1个值 | padding:上下左右内边距; |
2个值 | padding: 上下内边距 左右内边距 ; |
3个值 | padding:上内边距 左右内边距 下内边距; |
4个值 | padding: 上内边距 右内边距 下内边距 左内边距 ; |
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 400px;
height: 400px;
background-color: red;
border-top: 20px solid orange;
border-left: 20px solid blue;
border-bottom: 20px solid green;
border-right: 20px solid rebeccapurple;
/* 上下左右内边距都是40px */
padding: 40px;
/* 上下40px 左右50px */
padding: 40px 50px;
/* 上40px 右50px 下60px 左边也是50px*/
padding: 40px 50px 60px;
/* 上40px 右50px 下60px 左70px */
padding: 40px 50px 60px 70px;
}
style>
head>
<body>
<div class="box">div>
body>
html>
宽度
Element Width = content width + padding + border (Width为内容宽度)
高度
Element Height = content height + padding + border (Height为内容高度)
盒子的实际的大小 = 内容的宽度和高度 + 内边距 + 边框
如上图:
盒子宽度是:20+70+400+50+20=560px
盒子高度是:20+40+400+60+20=540px
(A) 130
(B) 135
© 125
(D) 115
div {
width: 200px;
height: 200px;
border: 1px solid #000000;
border-top: 5px solid blue;
padding: 50px;
padding-left: 100px;
}
问题
会撑大原来的盒子
解决:
实现文本居中显示
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 400px;
height: 400px;
background-color: orange;
}
p {
/* 写了宽度是100% 就是内容宽的100% 不写就是父级容器的100% */
/* width: 100%; */
height: 100px;
background-color: red;
font-size: 30px;
line-height: 100px;
text-align: center;
padding-right: 30px
}
style>
head>
<body>
<div class="box">
<p>我是一个段落p>
div>
body>
html>
margin属性用于设置外边距。 margin就是控制盒子和盒子之间的距离
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 600px;
height: 600px;
background-color: orange;
border: 10px blue solid;
}
.box1,
.box2,
.box3 {
width: 200px;
height: 200px;
/* 把两个盒子转换为行内块标签,这样既可以改变盒子的大小,又可以一行显示多个 */
display: inline-block;
}
.box1 {
background-color: red;
margin-top: 50px;
margin-left: 50px;
}
.box2 {
background-color: green;
margin-top: 50px;
margin-left: 50px;
}
.box3 {
background-color: palegreen;
margin-top: 50px;
margin-left: 50px;
}
style>
head>
<body>
<div class="box">
<div class="box1">div>
<div class="box2">div>
<div class="box3">div>
div>
body>
html>
属性 | 作用 |
---|---|
margin-left | 左外边距 |
margin-right | 右外边距 |
margin-top | 上外边距 |
margin-bottom | 下外边距 |
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box {
width: 600px;
height: 600px;
background-color: orange;
border: 10px blue solid;
}
.box1 {
width: 200px;
height: 200px;
background-color: red;
/* 上右下左都是30px */
margin: 30px;
/* 上下30px 左右40px */
margin: 30px 40px;
/* 上30px 右40px 下50px 左30px */
margin: 30px 40px 50px;
/* 上 右 下 左 */
margin: 30px 40px 50px 60px;
}
style>
head>
<body>
<div class="box">
<div class="box1">div>
div>
body>
html>
可以让一个块级盒子实现水平居中必须:
实际工作中常用这种方式进行网页布局,示例代码如下:
.box{
width:960px;
margin: 0 auto;
}
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.father{
width: 400px;
height: 400px;
background-color: orange;
margin: 0 auto;
}
.son{
width: 200;
height: 200;
background-color: red;
margin: 0 auto;
}
style>
head>
<body>
<div class="father">
<div class="son">div>
div>
body>
html>
margin:0 auto 的意思是 上下边距为0px ,左右 自动,也就是居中显示。
margin:20px auto 的意思是 上下边距为 20px ,左右 自动,也是居中显示。
注意:
text-align: center; /* 文字 行内元素 行内块元素水平居中 */
margin: 0 auto; /* 块级盒子水平居中 左右margin 改为 auto 就可以了 上下margin都可以 */
代码示例:
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
*{
margin: 0;
}
.box {
width: 300px;
height: 300px;
background-color: red;
}
style>
head>
<body>
<div class="box">
<h1>123h1>
div>
body>
html>
为了更灵活方便地控制网页中的元素,制作网页时,我们需要将元素的默认内外边距清除
* {
padding:0; /* 清除内边距 */
margin:0; /* 清除外边距 */
}
注意:
当上下相邻的两个块元素相遇时,如果上面的元素有下外边距margin-bottom
下面的元素有上外边距margin-top,则他们之间的垂直间距不是margin-bottom与margin-top之和
取两个值中的较大者这种现象被称为相邻块元素的合并(也称外边距塌陷)。
解决方案:尽量给只给一个盒子添加margin值。
<head>
<meta charset="UTF-8">
<title>Documenttitle>
<style>
.box1,
.box2 {
width: 200px;
height: 200px;
}
.box1 {
background-color: orange;
margin-bottom: 50px;
}
.box2 {
background-color: blue;
margin-top: 50px;
}
style>
head>
<body>
<div class="box1">div>
<div class="box2">div>
body>
html>
解决方案:
还有其他方法,比如浮动、固定、绝对定位的盒子不会有问题,后面咱们再总结。
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
<style>
* {
margin: 0;
padding: 0;
}
.father {
width: 600px;
height: 600px;
background-color: red;
/* 1. 可以为父元素定义上边框。 */
/* border: green 5px solid; */
/* 2. 可以为父元素定义上内边距 */
/* padding: 20px; */
/* 3. 可以为父元素添加overflow:hidden。 */
/* overflow: hidden */
}
.box1 {
width: 200px;
height: 200px;
background-color: orange;
margin-top: 40px;
}
style>
head>
<body>
<div class="father">
<div class="box1">div>
div>
body>
html>
【强制】 选择器 与 { 之间必须包含空格。
示例:
.selector {
}
【强制】 属性名 与之后的 : 之间不允许包含空格, : 与 属性值 之间必须包含空格。
示例:
font-size: 12px;
【强制】 并集选择器,每个选择器声明必须独占一行。
示例:
/* good */
.post,
.page,
.comment {
line-height: 1.5;
}
/* bad */
.post, .page, .comment {
line-height: 1.5;
}
【建议】 一般情况情况下,选择器的嵌套层级应不大于 3 级,位置靠后的限定条件应尽可能精确。
示例:
/* good */
#username input {
}
.comment
.avatar {
}
/* bad */
.page
.header
.login
input {
}
.comment
div
* {
}
【强制】 属性定义必须另起一行。
示例:
/* good */
.selector {
margin: 0;
padding: 0;
}
/* bad */
.selector { margin: 0; padding: 0; }
【强制】 属性定义后必须以分号结尾。
示例:
/* good */
.selector {
margin: 0;
}
/* bad */
.selector {
margin: 0
}