gpt4 book ai didi

css - Microsoft Edge 不遵守某些伪元素的 CSS

转载 作者:太空宇宙 更新时间:2023-11-03 22:37:45 25 4
gpt4 key购买 nike

有问题的代码:http://jsbin.com/bisimeyija/edit?html,css,output

我相信它在 Chrome/Safari/Firefox 甚至 IE11 中都运行良好。

HTML

<div class="img-Offset">
<div class="img-Offset_ImageContainer">
<img src="http://placehold.it/430x350" alt="">
</div>

<p class="img-Offset_Caption">Scott Preston and his wife Laura</p>
</div>

:root {
--Theme_Primary-dark: #f98183;
}

CSS

.img-Offset {
position: relative;
z-index: 1;

max-width: 520px;
width: 100%;
}

.img-Offset::after {
content: '';

position: absolute;
top: 90px;
right: 0;
bottom: 0;
left: 0;
z-index: -1;

display: block;

background-color: var(--Theme_Primary-dark);
border-radius: 5px;
}

.img-Offset_ImageContainer {
position: relative;

padding-left: 90px;

border-radius: 5px;
border-bottom-right-radius: 0;
}

.img-Offset_Caption {
margin-top: 14px;
padding-right: 30px;
padding-bottom: 21px;
padding-left: 90px;

font-weight: 500;

color: #fff;
}

在 Edge 中它看起来像:image它应该看起来像:image

所以出于某种原因,border-radiustop 没有在 pseudo 上工作,但其他一切都可以。

最佳答案

这似乎是与 CSS 变量的使用有关的问题。如果将背景颜色更改为简单的十六进制值,问题就会消失。

关于css - Microsoft Edge 不遵守某些伪元素的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45508574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com