使用CSS的带有渐变的顶部边框

问题描述 投票:12回答:3

我想在div的顶部放置一个渐变边框。

因此起始颜色应为#c4268c,并以#9a0b72结尾

<div class="bordertest"></div>

为了放松,这里是小提琴:http://jsfiddle.net/aKhjk/

我搜索了但找不到合适的方法。

css xhtml border
3个回答
12
投票

您可以使用图片http://border-image.com/或在边框上使用伪元素:

.bordertest {
    height:300px;
    width:300px;
    border-top:30px solid #c4268c;
    background:#000;
    position:relative;
    margin:1em;
}
.bordertest:first-child:before {
    content:'';
    position:absolute;
    width:100%;
    height:30px;
    background:linear-gradient(to left, #c4268c, #9a0b72);
    top:-30px;
    left:0;
}

http://jsfiddle.net/aKhjk/1/-jsfiddle.net/aKhjk/3


3
投票

尝试一下,它也可以跨浏览器使用。因此,您无需做太多工作。

http://jsfiddle.net/cornelas/aKhjk/6/

.bordertest {
    height:300px;
    width:300px;
    border-top:30px solid #c4268c;
    /** Created at http://www.colorzilla.com/gradient-editor/ **/
    background: rgb(196,38,140); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(196,38,140,1) 0%, rgba(154,11,114,1) 5%, rgba(0,0,0,1) 10%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(196,38,140,1)), color-stop(5%,rgba(154,11,114,1)), color-stop(10%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(196,38,140,1) 0%,rgba(154,11,114,1) 5%,rgba(0,0,0,1) 10%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(196,38,140,1) 0%,rgba(154,11,114,1) 5%,rgba(0,0,0,1) 10%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(196,38,140,1) 0%,rgba(154,11,114,1) 5%,rgba(0,0,0,1) 10%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(196,38,140,1) 0%,rgba(154,11,114,1) 5%,rgba(0,0,0,1) 10%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4268c', endColorstr='#000000',GradientType=0 ); /* IE6-9 */

}

0
投票

现在,您可以在所有现代浏览器中使用带有border-image属性的线性渐变。

.repeating-linear {
   color: pink;
   border: 10px solid pink;
   border-image: repeating-linear-gradient( 45deg, pink, pink 1%, purple 1%, purple 8%) 10;
}

参见:https://css-tricks.com/almanac/properties/b/border-image/

© www.soinside.com 2019 - 2024. All rights reserved.