博主信息
博文 28
粉丝 0
评论 1
访问量 27882
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
背景控制的常用属性
南宫
原创
868人浏览过
  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举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学