高 DPI 显示器上 div 背景和边框之间的 0-1px 间隙变化

Dre*_*ieb 5 css google-chrome dpi retina-display

这是我在 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;
}
Run Code Online (Sandbox Code Playgroud)

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

100% DPI 缩放显示器,无间隙正确渲染。

150% DPI 缩放的显示器,显示背景和边框之间的间隙。

175% DPI 缩放的显示器,显示背景和边框之间的间隙。

200% DPI 缩放的显示器,无间隙地正确渲染。

我尝试了几种策略来呈现按钮,但它们都导致了差距:

  • 尝试使用带有渐变的图像而不是linear-gradient同时使用border-imagebackground-image
  • 尝试对背景渐变使用显式 div 而不是伪元素。
  • 尝试对背景渐变使用显式 div 而不是伪元素,并且还使用实心左右边框和 ::before 和 ::after 伪元素,顶部和底部边框具有线性渐变背景。

mis*_*Sam 5

原因?

我会(未经教育的)猜测这是由缩放时的子像素引起的。它不能是像素的一小部分,因此它选择整个像素值;在某些比例下,父级的计算值比给子级的值大 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;
}
Run Code Online (Sandbox Code Playgroud)
Click it:
<div class="Button"></div>
Run Code Online (Sandbox Code Playgroud)