gpt4 book ai didi

css - 在高 DPI 显示器上,div 背景和边框之间有 0-1px 的间隙

转载 作者:行者123 更新时间:2023-11-28 10:08:05 25 4
gpt4 key购买 nike

这是我用 CSS 创建的按钮的独立示例。它具有带渐变的 1px 边框和背景渐变。背景渐变作为伪元素实现,以允许其不透明度在悬停时淡化。

https://codepen.io/anon/pen/wbYoeo?editors=1100

.Button
{
width: 200px;
height: 30px;
cursor: pointer;
padding: 0.8rem;
border-style: solid;
border-image: linear-gradient(
to right,
green 0%,
blue 100%);
border-image-slice: 1;
border-width: 1px;
position: relative;
margin-top: 10px;
transition: color 0.2s;
}

.Button::before
{
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: linear-gradient(
to right,
green 0%,
blue 100%);
opacity: 0.5;
transition: opacity 0.2s;
}

按钮在不同 DPI 的显示器之间呈现的效果不同。使用不同 DPI 比例在 Windows 上的 Chrome 中呈现的按钮屏幕截图:

100% DPI-scaled monitor, rendering correctly with no gap.

150% DPI-scaled monitor, showing a gap between the background and border.

175% DPI-scaled monitor, showing a gap between the background and border.

200% DPI-scaled monitor, rendering correctly with no gap.

我已经尝试了几种策略来呈现按钮,但它们都会导致间隙:

  • 尝试使用 imageborder-imagebackground-image 上使用渐变而不是 linear-gradient
  • 尝试为背景渐变使用显式 div 而不是伪元素。
  • 尝试为背景渐变使用显式 div 而不是伪元素,还使用实心左右边框和::before 和::after 伪元素,顶部和底部边框具有线性渐变背景.

最佳答案

原因?

我会(未受过教育的)猜测这是由缩放时的子像素引起的。它不能是一个像素的零头,所以它选择了一个完整的像素值;在某些比例下, parent 的计算值比给 child 的值大 1px。

解决方法

去掉按钮 div 本身的边框,并将其放在 ::after 伪元素上,这样边框和背景都是子元素。边框现在似乎与背景渐变一致。

示例

.Button {
width: 200px;
height: 30px;
cursor: pointer;
padding: 0.8rem;
position: relative;
margin-top: 10px;
transition: color 0.2s;
}

.Button::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: linear-gradient( to right, green 0%, blue 100%);
opacity: 0.2;
transition: opacity 0.2s;
}

.Button:hover::before {
opacity: 0.5;
}

.Button:active::before {
opacity: 1;
}

.Button::after {
content: '';
border-style: solid;
border-image: linear-gradient( to right, green 0%, blue 100%);
border-image-slice: 1;
border-width: 1px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
}

html {
height: 100%;
display: table;
margin: auto;
}

body {
background: black;
display: table-cell;
vertical-align: middle;
color: white;
font-family: sans-serif;
}
Click it:
<div class="Button"></div>

关于css - 在高 DPI 显示器上,div 背景和边框之间有 0-1px 的间隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56370595/

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