特效 css3 渐变背景框
Posted xiaozhang666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了特效 css3 渐变背景框相关的知识,希望对你有一定的参考价值。
.box 子级 position: relative; width: 300px; height: 400px; display: flex; justify-content: center; align-content: center; background: #1B6D85; .box::before content: ""; position: absolute; top: -2px; right: -2px; bottom: -2px; left: -2px; background: white; z-index: -1; .box::after content: ""; position: absolute; top: -2px; right: -2px; bottom: -2px; left: -2px; background: white; z-index: -2; filter: blur(60px); .box::before, .box::after background: linear-gradient(235deg,#89ff00,#1b6d85,#00bcd4); .content 父级 color: white; padding: 20px;
以上是关于特效 css3 渐变背景框的主要内容,如果未能解决你的问题,请参考以下文章