/* 阴影 */
text-shadow: rgb(0, 236, 253) 30px 10px 1px;
/* 自动换行 */
word-wrap: break-word;
box-sizing: content-box;
/* 圆角 */
border-radius: 10px 20px 25px 30px;
/* 阴影 */
box-shadow: red 20px 30px 10px;
column-count:规定分隔的列数
transform:translate(top,left):从其当前位置移动;
transform:rotate(30deg):顺时针旋转给定的角度;
transform:scale(1.1):元素尺寸增加或减少;
transform:skew(30deg,20deg):翻转给定的角度,根据x轴和y轴;
transition:width 2s 过度
动画
animation: mingcheng 3s;
@keyframes mingcheng{
from{background-color: blue;}
to{background-color: darkgreen;}
0%{width: 300px;}
50%{width: 500px;}
100%{width: 300px;}
原文:https://www.cnblogs.com/z242643/p/12745138.html