css常用属性
- display:flex
- flex属性
- ........
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* 单行出现省略号 */
.div{
width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* 多行文字溢出隐藏 */
.div_two{
width: 100px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
color: red;
margin-top: 20px;
}
/* css写三角形 */
.math{
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid blue;
margin-top: 20px;
}
/* 出现周围炫光 */
.div_three{
box-shadow: 0 0 10px blue;
margin-top: 20px;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div class="div"> 这是很长的文字这是很长的文字这是很长的文字这是很长的文字这是很长的文字这是很长的文字 </div>
<div class="div_two">这是多行文字多行文字多行文字多行文字多行文字多行文字多行文字多行文字多行文字多行</div>
<div class="math"></div>
<div class="div_three"></div>
</body>
</html>
效果图
非常方便的属性