作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的 background-color
的底部是另一种颜色。我确定它涉及一个linear-gradient
?但不确定如何实现
示例代码:
.background{
height:100px;
width:200px;
background-color: #11143b;
background: linear-gradient(top, red, red 70%, transparent 70%, transparent 100%);
}
<div class="background">
</div>
如有任何帮助,我们将不胜感激。
最佳答案
就像这样:
.background{
height:100px;
width:200px;
background:
linear-gradient(to bottom right, transparent 49%,red 52%) bottom / 100% 20px no-repeat,
#11143b;
}
<div class="background">
</div>
关于css - 将背景颜色的底边设为另一种颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50911876/
在 Android 上,有一个代表绘图表面的 Canvas 类。它有一个剪裁矩形。问题 - 矩形的右边界和底边界是包容性的还是排他性的?换句话说 - 如果矩形是 (0, 0)-(10, 10),Can
我正在努力实现只会将顶角圆化并在其周围形成阴影的 View 。整个 View 应在底部被父 View 遮盖,以防止阴影重叠在 subview 之后(阴影偏移应为 (0, 0))。 当我使用时:
我是一名优秀的程序员,十分优秀!