css背景和颜色,了解一下

div{
background:url(a.gif);
background-size: 10px 10px;

background-size:
cover 宽度和高度设为auto
contain 高度等于元素高度、宽度auto

图片叠加

设置多个背景图片

背景图片位置

background-origin
border-box 边框左上角
padding-box内边距左上角
content-box 内容左上角

background-clip
控制整个元素背景的显示范围

颜色模式 HSLA

色调Hue
饱和度Saturation
亮度Light
透明度Alpha

opacity 透明颜色

渐变

background:linear-gradient(方向,起始颜色,结束颜色)

raduak-gradient 放射渐变

猜你喜欢

转载自blog.csdn.net/java_sparrow/article/details/80552732