使用渐变但不混合颜色

编程入门 行业动态 更新时间:2024-10-10 12:19:43
本文介绍了使用渐变但不混合颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我不知道这是一个愚蠢的问题还是类似的问题,但是我希望div用一种颜色填充一定的百分比,而用其他颜色填充其余的百分比.

I don't know if that is a stupid question or something like that but i want a div to be filled certain percent by one color and remaining part by other.

还有渐变属性

.div{ background: linear-gradient(to right, #000 50%, #fff 50%); }

结果进入

.div{ background: linear-gradient(to right, #000 28%, #fff 72%); }

结果变为

我想让白色和黑色不要混在一起,并且在所有百分比上都要分开.

i want to get the white and black not to mix and be seperated on all percentages.

推荐答案

尝试一下

.div{ background: -webkit-linear-gradient(left, black 50%, white 0%); background: -moz-linear-gradient(left, black 50%, white 0%); background: -ms-linear-gradient(left, black 50%, white 0%); background: linear-gradient(left, black 50%, white 0%); }

更多推荐

使用渐变但不混合颜色

本文发布于:2023-11-30 22:39:35,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1651685.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:但不   颜色

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!