CSS伪元素曲线背景定位

问题描述

我正在尝试从前端导师那里挑战一下,在那里您有一些div元素在顶部和底部带有曲线图像。我正在尝试使用像这样的伪元素之前和之后

.feature__item {
    width: 100%;
    position: relative;
    margin: 200px 0;
    padding: 50px;
}

.feature__item-1::before {
    content: '';
    width: 100%;
    height: 139px;
    background-image: url('../images/bg-section-top-desktop-1.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: -139px;
}

.feature__item-1::after {
    content: '';
    width: 100%;
    height: 139px;
    background-image: url('../images/bg-section-bottom-desktop-1.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    bottom: -139px;
}

位于底部的元素不会产生问题。但是当我使用浏览器的宽度播放时,top元素会崩溃。有没有办法使:before元素的底部位于父div的顶部?还是有解决此问题的另一种方法

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)