搜索
查看: 340|回复: 0
收起左侧

[其他发布] 用css给网站增加一个渐变背景

[复制链接]

签到天数: 75 天

[LV.6]常住居民II

发表于 2024-1-22 12:28:23 | 显示全部楼层 |阅读模式
20240122093962596259.jpg

首先我们用css实现增加渐变背景,我们用css定位<body>标签,增加css代码就可以实现了全局渐变背景了。

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -520;
    pointer-events: none;
}
body::before {
    background: linear-gradient( 90deg, rgba(247, 149, 51, .1), rgba(243, 112, 85, .1) 15%, rgba(239, 78, 123, .1) 30%, rgba(161, 102, 171, .1) 44%, rgba(80, 115, 184, .1) 58%, rgba(16, 152, 173, .1) 72%, rgba(7, 179, 155, .1) 86%, rgba(109, 186, 130, .1));
}





上一篇:ps字体包下载免费可商用无版权
下一篇:某汽车广告demo全集
您需要登录后才可以回帖 登录 | 注册用户

本版积分规则

快速回复 返回顶部 返回列表