1. 父亲儿子的上下margin合并
<head>
<style>
.child{
height: 100px;
border: 1px solid red;
margin-top: 100px;
}
.parent{
width: 100%;
background: green;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
这样儿子的margin-top会给到父亲,把父亲挤下来,但只要在父亲里加:
border: 0.1px solid green;
padding: 0.1px
display: table;
-
display: flex;
(不加width的话会把width变成0) -
display: inline-block
(不加width的话会把width变成0)
则上下margin不会合并,父亲还是会把儿子包起来
2. 对齐中文
<head>
<style>
span{
display: inline-block;
text-align: justify;
width: 5em;
overflow: hidden;
height: 20px;
border: 1px solid red;
}
span::after{
content: '';
display: inline-block;
width: 100%;
border: 1px solid blue;
}
</style>
</head>
<body>
<span>姓名</span> <br>
<span>联系方式</span>
</body>
3. 文字溢出变省略
- 显示一行
<style>
div{
border: 1px solid red;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
<body>
<div>
只显示一行,超出一行的用省略号替代....
</div>
</body>
- 显示任意多少行(不兼容iE)
<style>
div{
border: 1px solid red;
display: -webkit-box; //-webkit不兼容IE
-webkit-line-clamp: 1; //只显示1行
-webkit-box-orient: vertical;
overflow: hidden;
}
</style>
<body>
<div>
文字文字文字....
</div>
</body>
4. 文字绝对居中
不要给div加height,直接用padding当作高度
<style>
div{
border: 1px solid red;
/* 写line-height,不要写height */
line-height: 24px; /* div高为line-height+2*padding */
padding: 8px 0; /* 垂直居中 */
text-align: center; /* 水平居中 */
}
</style>
<body>
<div>
文字文字文字....
</div>
</body>
5. 文档流
1. div高度
综1和4所述,div高度是由div内部文档流元素高度总和决定的,文档流中内联元素从左到右依次排列若空间不够则换行,文档流中块级元素从上到下依次排列
- 脱离文档流
float
position: absolute
position: fixed
- 相对定位(relative)
position:relative
不会脱离文档流,给相对定位的元素设置top和left,会相对它之前在的位置变化,但它之前占的位置会一直占在那,不会脱离文档流
6. 居中
- parent没写height时
<head>
<style>
.child{
border: 1px solid red;
margin: 0 auto; /* 水平居中 */
width: 100px;
}
.parent{
border: 1px solid green;
padding: 100px 0; /* 垂直居中 */
}
</style>
</head>
<body>
<div class="parent">
<div class="child">
asd asd
</div>
</div>
</body>
- parent写了height(不兼容IE)
<body>
<div class="parent">
<div class="child">
asd asd
</div>
</div>
</body>
<style>
.child{
border: 1px solid red;
}
.parent{
border: 1px solid green;
height: 100px;
display: flex; /* 这三行搞定 */
justify-content: center;
align-items: center;
}
</style>
- element-ui的msgbox的居中方法vertical-align:middle
wrapper里所有inilne-block的元素都能垂重居中
<body>
<div class="wrapper">
asd
</div>
</body>
<style>
html, body {
height: 100%;
}
.wrapper {
height: 100%;
}
.wrapper:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
</style>
7. 内联元素的宽高
padding和margin只会影响内联元素的宽度,不影响高度。
内联元素的宽度由文字个数、padding、margin、border决定。
高度只由line-height:5;
和font-size
决定。
块级元素高度由内部文档流决定
8. 生成一个1:1的div(不写高度)
<head>
<style>
div{
border: 1px solid green;
padding-top: 100%; /* 这是高度,会随宽度变化自动变 */
}
</style>
</head>
<body>
<div class="parent"> </div>
</body>
9. 层叠关系
10. 堆叠上下文
- 根元素(HTML)
- z-index值不为auto的 绝对/相对定位的元素就是堆叠上下文
-
position: fixed
也是堆叠上下文 -
opacity: 0.5
也是
- 堆叠上下文越后写的级别越高,级别高的堆叠上下文里的所有东西都可以压过级别底的里的所有东西。
- 在父亲是堆叠上下文中的儿子元素即使是
z-index: -1;
,在层叠关系里也会在父亲的border和background之上,不会沉下去
11. icon
-
ps文件
点OK变成100*100,再以png导出,在网页里用img引用即可
-
png文件
选择魔法棒
用魔法棒选中自己要的图标,按住shift同时选中这两个,然后反选 用div的background引用图片
<style>
.icon{
display: inline-block;
width: 100px;
height: 100px;
background: transparent url(./qq.png) no-repeat 0 0;
}
</style>
- css sprites(雪碧图)
- iconfont方法最先进
12. 响应式(基本没人用了)
- 媒体查询
<style> /* 屏幕宽度为300px-325px时的css样式 */ @media(min-width: 300px) and (max-width: 325px){ body{ background: red; } } /* 屏幕宽度小于450px时的css样式 */ @media(max-width: 450px){ body{ background: black; } } /* 这样前面那个就没用了,被覆盖了 */ </style>
- 一般不用第一个方法,直接引用一个手机版的css即可
在屏幕宽度小于768px时,就会渲染这个css,要把这个引用写在main.css之后,把main.css覆盖。<link rel="stylesheet" media="(max-width:768px)" href="mobile.css">
并加上meta:vp
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
13. flex布局
-
container的属性
flex-direction: row;// (默认)所有内容排列在一行 flex-direction: row-reverse; //反向排列在一行 flex-direction: column; //所有内容排列在一列 flex-direction: column-reverse; //反向 flex-wrap: nowrap; //不换行(默认) flex-wrap: wrap; //自动换行 flex-flow: row nowrap; //上面两个属性的简写 //justify控制主轴 justify-content: space-between; //这两个都是子元素在一行均匀分布 justify-content: space-around; justify-content: flex-start; //子元素都往起点靠 justify-content: flex-end; //子元素都往终点靠 justify-content: center; //子元素居中 //align控制子元素的侧轴 align-items: stretch; //(默认)把同一行里的子元素的高度都伸展到同一行里最高那个元素 align-items: center; //垂直居中 align-items: flex-start; //往侧轴的起点靠
-
item的属性
//flex-grow,当一行空间没占满的时候 .child:nth-child(1){ flex-grow: 2; } .child:nth-child(2){ flex-grow: 1; } //在同一行内把这两个元素按2比1的比例占满这一行 //也可以单独给一个元素flex-frow:1,这样它会自动填满空余部分 //这三个元素的简写,后两个很少用 flex: flex-grow flex-shrink flex-basis; //order(实现双飞翼) .child:nth-child(1){ order: 2; //改变排列顺序,这个放在第二个 } .child:nth-child(2){ order: 1; //这个放在第一个 } //align-self .child:nth-child(1){ align-self: center; //第一个儿子在垂直方向居中 }
若父元素是
display:flex;
那么子元素的浮动是无效的
14. 小技巧
对display:none
到display:block
的过程transition: all 1s;
没用,可以改成visibility: hidden;
和visibility: visible
15. bootstrap
- 安装
下载css、js文件,js需要用jquery,所以要先引用jquery - 栅格系统
<div class=container> //自动居中
<div class=row> //一行分成12份
<div class=col-md-1>1</div> //这两个分别占1份和11份
<div class=col-md-11>11</div>
</div>
<div class=row> //第二行
<div class="col-md-9 col-md-offset-3">9</div> //这样这个div会往右边对齐,因为第二个class代表往右偏3格
</div>
<div class=row> //第三行
<div class="col-xs-6 col-md-1 col-sm-3">6</div>
//在屏幕宽度很小的时候(手机)占6份
//中等(电脑)的时候占1份
//小(ipad)的时候占3份
//超大屏(col-lg-12)
</div>
</div>
秘诀
直接复制官网的html代码,复杂css组件,js组件,定制bootstrap可以自己改样式、颜色小技巧
靠右:不写col-md-...
,直接写pull-right
主题
下载的文件里有bootstrap.theme.css
16. IFC
-
font-size
是刻字的时候的那个模版的大小 -
line-height
是字所占的行高,但不同字体排在一起行高可能会变了,因为每个字体基线位置不同。而在一排要用基线对齐 -
vertical-top
是元素实际占的高度的顶部对齐,所以img不写vertical-top
的时候是以基线对齐的,下面会空出一点东西 - 不要用
inline-block
布局了,用flex
或float
17. reset
*{margin: 0; padding: 0;}
*{box-sizing: border-box;}
*::after{box-sizing: border-box;}
*::before{box-sizing: border-box;}
ul,li{list-style: none;}
a{color: inherit; text-decoration: none;}
body{
font-size: 12px;
line-height: 1.5;
}
18. pointer-events
pointer-events:none
表示用户可以穿透这个div点击后面的东西
19. 把背景图片变模糊
用before做模糊,就不会把字变模糊
<div class=cover>
你好
</div>
<style>
.cover{
width: 400px;
height: 400px;
position: relative;
color: red;
}
.cover::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent url(...) center center ;
filter: blur(5px);
z-index: -1;
background-size: cover;
}
</style>
20. animation(还不支持移动端)
animation-play-state: pause; //动画暂停
animation-play-state: running; //动画播放
21. 链接样式
a:link //初始状态
a:visited //已经访问过的
a:hover //把鼠标放上去时
a:active //鼠标点击时
- a:hover 必须在a:link和 a:visited之后写,才能显示效果!
- a:active必须出现在a:hover定义后才能有效果