我正在尝试将<ul>
元素的右边界设为线性渐变
我试过以下但没有成功:
-webkit-border-image: -webkit-linear-gradient(top, #FE2EF7, #4AC0F2) 0 0 5px;
我正在使用Chrome 非常感谢
答案 0 :(得分:4)
有一个解决方案,但我不确定你可以调整边框宽度:http://jsfiddle.net/u2ZE4/1/
-webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#fff))0 100% 0 0 stretch;
答案 1 :(得分:1)
如果有人感兴趣,这就是我在顶端和底端淡出的div上应用右边框渐变的方法。好像花了很长时间才弄清楚...这只适用于Safari,因为在Firefox中做同样的事情要容易得多......
http://jsfiddle.net/fkFec/1102/
<div class="g">
<div>bla</div>
</div>
.g {
border-right-width:1px;
-webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, transparent), color-stop(0.5, grey), color-stop(0.5, grey), color-stop(1, transparent)) 0 100%;
border-right-width: 1px;
border-left-width: 0px;
border-top-width: 0px;
border-bottom-width: 0px;
padding: 2px;
width: 400px;
height: 150px;
margin: 10px auto;
}