有没有一种方法可以在不使用图像的情况下创建类似Delicious的“箭头标签”:

我对border-triangle technique很熟悉,但无法使其看起来像样(部分是因为我们需要一个额外的外部边框来构成整个组件)。

最佳答案

我创建一个小例子可能就是您想要的。

CSS

div{
    padding:5px 10px;
    font-size:12px;
    -moz-border-radius:0 5px 5px 0;
    -webkit-border-radius:0 5px 5px 0;
    float:left;
    margin-left:30px;
    margin-top:20px;
    position:relative;
    font-family:verdana;
    color:#3b3d3c;
    border:1px solid #d5d5d7;
    border-left:0;
}

div{
    background: -moz-linear-gradient( top , #fbfdfc 0%,#f6f5f5 100%);
    background: -webkit-linear-gradient( top , #fbfdfc 0%,#f6f5f5 100%);
}

div:after{
    content:"";
     width:18px;
     height:18px;
     background: -moz-linear-gradient( left top , #fbfdfc 0%,#f6f5f5 100%);
    background: -webkit-linear-gradient( left top , #fbfdfc 0%,#f6f5f5 100%);
     -moz-transform: rotate(45deg);
     -webkit-transform: rotate(45deg);
     display:block;
    position:absolute;
    top:3px;
    left:-10px;
    z-index:-1;
    border:1px solid  #d5d5d7;
}

检查此http://jsfiddle.net/9EEEP/76/

更新了
现在也可以在Chrome中使用

http://jsfiddle.net/9EEEP/77/

有关更多信息,请检查我的答案也How to code certain css shapes?

我使用的css3在IE8以下的浏览器中不起作用。

关于css - 无图像纯CSS箭头标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10161028/

10-09 07:47