2018.12.15 2d形变,动画,表格,多行文本垂直居中
Posted jutao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018.12.15 2d形变,动画,表格,多行文本垂直居中相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>复习预习</title>
<link href="css/font-awesome-4.7.0/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<!-- 1.过渡 -->
<style type="text/css">
/*伪类 == class*/
div.box:hover {
background-color: green;
?
height: 100px;
}
.box.b {
background-color: yellow;
/*持续时间 延迟时间 过渡属性 过渡曲线*/
transition: 1s .1s all cubic-bezier(0, 2.43, 0.82, 1.9);
/*高度0结合overflow:hidden 等价于 影藏*/
height: 10px;
overflow: hidden;
}
</style>
?
<!-- 2.阴影 -->
<style type="text/css">
.box {
margin-top: 10px;
/*x y 虚化 宽度 颜色*/
box-shadow: 120px 0 100px 0 red, 240px 0 0px 10px blue;
}
</style>
?
<!-- 3.伪类设计边框 -->
<style type="text/css">
.box {
width: 100px;
height: 100px;
background-color: yellow;
position: relative;
?
text-align: center;
?
}
.box:before {
content: "";
?
width: 90px;
height: 1px;