gpt4 book ai didi

html - 奇怪的人工制品在我的面包屑中仅显示一个前后伪选择器

转载 作者:行者123 更新时间:2023-11-28 14:16:04 26 4
gpt4 key购买 nike

我正在尝试创建带有箭头分隔符的 3 部分面包屑类型元素。这是一个简单的模型。

第 2 部分和第 3 部分之间出现了一个奇怪的伪像。在这种情况下,第 3 部分的红色背景在第 2 部分的蓝色箭头左侧(稍微)可见,但是第 2 部分的背景不会出现同样的问题干扰第 1 节箭头。谢天谢地但很奇怪。对我来说,这也只发生在 Chrome for Mac 上(浏览器窗口也没有放大/缩小)。还没有测试过 Windows 等。关于如何解决这个奇怪的问题有什么建议吗?

weird artefact

出现在第 2 部分和第 3 部分之间的奇怪人工制品(红色垂直线)的放大 View :

weird artefact zoomed

第 1 部分和第 2 部分之间没有出现这种奇怪的人工制品。

代码笔:

https://codepen.io/reacting/pen/xeewdO

html:

<div class="container">
<div class="section">section one</div>
<div class="section two">section two</div>
<div class="section">section three</div>
</div>

css/scss:

.container {
background-color: white;
border: 1px solid grey;
box-sizing: border-box;
width: 100%;
display: flex;
}
.section {
flex: 1;
position: relative;
height: 100px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
&:before {
content:"";
background-color: grey;
-webkit-clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
z-index: 1;
position: absolute;
right: -26px;
top: 0;
width: 25px;
height: 100px;
}
&:after {
content:"";
background-color:black;
-webkit-clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
clip-path: polygon(0% 100%, 100% 50%, 0% 0%);
z-index: 2;
position: absolute;
right: -25px;
top: 0;
width: 25px;
height: 100px;
}
&:last-of-type {
background-color: red;
color: black;
}
&:last-of-type:before {
display: none;
}
&:last-of-type:after {
display: none;
}
&.two {
background-color: blue;
&:after {
background-color: blue;
}
}
}

body {
background-color: #333;
}

我不只是想将 right: 前/后伪选择器的属性更改为小于 1 像素,因为这让人感觉很笨拙和错误。

非常感谢!

编辑:我想知道这个问题是否与我的 Mac 显示器的高分辨率有关——当我稍微调整 chrome 浏览器窗口的大小时,问题来来去去,第 1/2 部分或第 1/2 部分都会发生变化和 2/3 或没有。取决于浏览器窗口的大小。但奇怪的是,在 Firefox 和 Safari 中,拖动窗口时根本不会发生这种情况。

最佳答案

你可以优化代码并考虑元素上的clip-path而不需要伪元素然后考虑一些背景着色来模拟边框

.container {
background-color: white;
border: 1px solid grey;
box-sizing: border-box;
display: flex;
height: 100px;
}

.section {
flex: 1;
color: white;
display: flex;
justify-content: center;
align-items: center;
margin-left:-25px; /* Create an overlap with the previous element */
/* the clip path (note the 25px that is the same as margin*/
-webkit-clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25px 50%, 0% 0%);
clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 25px 50%, 0% 0%);
/* the border (note the 25px in the gradient)*/
border-left:3px solid grey; /* this will push the background and control the thickness of the border*/
background:
linear-gradient(to top right, grey 48%,transparent 50%) top left /25px 50%,
linear-gradient(to bottom right, grey 48%,transparent 50%) bottom left/25px 50%;
background-repeat:no-repeat;
background-color: black;
}
.section:last-of-type {
background-color: red;
color: black;
}
.section:first-of-type {
/* Remove everything from the first element */
clip-path:none;
margin-left:0;
border-left:0;
background:black;
}
.section.two {
background-color: blue;
}

body {
background-color: #333;
}
<div class="container">
<div class="section">section one</div>
<div class="section two">section two</div>
<div class="section">section three</div>
</div>

关于html - 奇怪的人工制品在我的面包屑中仅显示一个前后伪选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55902814/

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