border-radius:
border-radius: 0 10px 30px 50px ;
border-radius: 0 30px 50px;
border-radius: 30px 50px;
box-shadow:
box-shadow默认是外阴影 不设置inset 自动就是外阴影
box-shadow:inset 0 0 30px royalblue;
list-style-type 简写list-style
circle 空心圆
decimal 数字
disc 实心圆 默认的
disclosure-closed 树形图的关闭箭头
disclosure-open 树形图的打开箭头
none 没有任何样式
线性渐变
background: linear-gradient(to bottom,red,green,blue);
background: linear-gradient(to top,red,green,blue);
background: linear-gradient(to right,red,green,blue);
background: linear-gradient(to left,red,green,blue);
background: linear-gradient(to left bottom,red,green,blue);
background: linear-gradient(to top right,red,green,blue);
径向渐变(中心点向外散发)
background: radial-gradient(red 5%,green 30%,blue 60%);
background: radial-gradient(circle,red 10%,green 30%,blue 60%);
overflow: hidden;(溢出隐藏)
text-overflow:ellipsis;(超出文本使用省略号显示)
white-space:nowrap;(文本不会换行,在同一行继续)
字体文件
@font-face {
font-family: ;(给字体起个名字)
src: url();
}