有没有一种方法可以在不使用图像的情况下创建类似 Delicious 的“箭头标签”:
我熟悉边框三角形技术,但无法让它看起来不错(部分原因是我们需要一个额外的外边框来框住整个组件)。
我创建一个小例子可能就是你想要的。
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 中工作
有关更多信息,您还可以查看我的这个答案如何编码某些 css 形状?
我使用在浏览器下的 IE8 中不起作用的 css3。