垂直线性渐变

Vertical Linear Gradient

我正在尝试为页面上的边栏获得垂直效果。我已经尝试了 deg 选项,但它仍然显示一条水平线

.sidebar {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background-image: linear-gradient(90deg, #1559EC, #1559EC);
  color: #fff;
  font-size: 36px;
  font-family: Arial;
  border-radius: 3px;
  box-shadow: 0px 1px 4px -2px #333;
  text-shadow: 0px -1px #333;
}

.sidebar:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}
<div class="sidebar">
  The quick brown fox
</div>

问题不是渐变而是伪元素。渐变使用相同的颜色,所以角度是无用的。您需要的是反转伪元素上的 height/width 值并调整其渐变方向。也可以用简单的颜色代替主元素的渐变:

.sidebar {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background:#1559EC;
  color: #fff;
  font-size: 36px;
  font-family: Arial;
  border-radius: 3px;
  box-shadow: 0px 1px 4px -2px #333;
  text-shadow: 0px -1px #333;
}

.sidebar:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50%;
  height: calc(100% - 4px);
  background: linear-gradient(to right,rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}
<div class="sidebar">
  The quick brown fox
</div>

您可以像下面这样在主要元素上使用多个背景来简化它:

.sidebar {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background:
   linear-gradient(to right,rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2)) 2px 2px/50% calc(100% - 4px)no-repeat,
   #1559EC;
  color: #fff;
  font-size: 36px;
  font-family: Arial;
  border-radius: 3px;
  box-shadow: 0px 1px 4px -2px #333;
  text-shadow: 0px -1px #333;
}
<div class="sidebar">
  The quick brown fox
</div>

您尝试更改的渐变具有相同的两种颜色,因此您看不出差异。制作你想要的东西的最简单方法是使用生成器,因为每个渲染引擎的代码都有点不同。

最简单的关键字解决方案是使用 "to direction" 而不是学位。见下文。第一个框从上到下,第二个框从左到右。

你的例子有一个伪class (:after) 添加第二个渐变来创建硬线。您可以通过向渐变添加更多停靠点来实现类似的效果。

.box{
        width: 100px;
        height: 100px;
        margin-bottom: 20px
    }
.gradient1 {
    background: linear-gradient(to bottom, #8fc400, #29b8e5);
}
.gradient2 {
    background: linear-gradient(to right, #8fc400, #29b8e5);
}
.gradient3 {
    background: linear-gradient(to bottom, rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%);
} 
        <div class="box gradient1">
            
        </div>
        <div class="box gradient2">
            
        </div>
        <div class="box gradient3">
            
        </div>