博客列表 >背景控制的常用属性

背景控制的常用属性

南宫
南宫原创
2020年06月28日 00:50:06689浏览
  1. 背景色
  1. background-color: lightgreen;

2.控制背景的覆盖范围限制在内容区

  1. background-clip: border-box; /* 背景色超出内容区 */
  2. background-clip: content-box; /* 背景色在内容区 */

3.渐变

  1. background: linear-gradient(red, yellow);
  2. background: linear-gradient(45deg, red, yellow);
  3. /* 向右渐变 */
  4. background: linear-gradient(to right, red, yellow);
  5. /* 向左渐变 */
  6. background: linear-gradient(
  7. to left,
  8. rgba(255, 0, 0, 0.5),
  9. white,
  10. yellow,
  11. white,
  12. yellow
  13. );

4.背景图片

  1. background-image: url("girl.jpg");
  2. /* 不重复铺张 */
  3. background-repeat: no-repeat;
  4. /* 向y轴重复铺张 */
  5. background-repeat: repeat-y;
  6. /* 向x轴重复铺张 */
  7. background-attachment: fixed;

5.背景定位: 位置

  1. background-position: 50px 60px;
  2. /* 下面两个效果相同 */
  3. background-position: right center;
  4. background-position: center right;
  5. /* 只写一个,第二个默认就是center */
  6. background-position: left;
  7. background-position: 50% 20%;
  8. /* 只写一个,第二个默认就是50% */
  9. background-position: 50% 50%;
  1. /* 简写 */
  2. background: url("girl.jpg") no-repeat center;
  1. .box:hover {
  2. /* 外发光 加投影*/
  3. box-shadow: 0 0 8px #888;
  4. cursor: pointer;
  5. }
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议