边界CSS内的边框

CSS三angular教程的帮助下,我学会了创build三angular形形状。

.arrow-down { width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid #ccc; } 

我正在尝试向三angular形添加边框,但我无法做到这一点。

我所取得的成就: 在这里输入图像描述

预计:(尝试类似灰色边框) 在这里输入图像描述

检查这个JSFiddle

卡住没有开始这个地方。 我试过outline ,但没有任何工作(我知道这是行不通的)。

感谢您花时间阅读我的问题。

任何帮助表示赞赏。

注意:我正在尝试在CSS而不是使用图像。

当主要三angular形或箭头本身是使用CSS边框创build的时,不可能在不使用额外元素的情况下添加另一个边框。 以下是几个选项。

选项1:使用更大尺寸的伪元素并将其放置在父元素后面以产生边界效果。

 .arrow-down { position: relative; width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid #ccc; } .arrow-down:before { position: absolute; content: ""; left: -22px; top: -20px; height: 0px; width: 0px; border-left: 21px solid transparent; border-right: 21px solid transparent; border-bottom: 21px solid transparent; border-top: 21px solid black; z-index: -1; } 
 <div class="arrow-down"></div> 

尝试添加这些行到您的CSS:

 .arrow-down:before { content: ""; display: block; border-left: 26px solid transparent; border-right: 26px solid transparent; border-top: 26px solid #0f0; position: relative; left: -26px; top: -20px; z-index: -1; } 

这将绘制一个3px的绿色边框。

检查结果在这里: jsfiddle

演示: http : //jsfiddle.net/3fFM7/

 .arrow { border-bottom: 60px solid transparent; border-left: 60px solid black; border-top: 60px solid transparent; height: 0; margin-left: 50px; width: 0; behavior:url(-ms-transform.htc); -moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg); } .arrow > div { border-bottom: 59px solid transparent; border-left: 59px solid red; border-top: 59px solid transparent; left: -60px; position: relative; top: -63px; width: 0; } <div class="arrow"><div></div></div> 

玩变换旋转:)

要么:

DEMO: http : //jsfiddle.net/tKY25/1/

 <div class="triangle-with-shadow"></div> .triangle-with-shadow { width: 100px; height: 100px; position: relative; overflow: hidden; transform: rotate(180deg); } .triangle-with-shadow:after { content: ""; position: absolute; width: 50px; height: 50px; background: #999; transform: rotate(45deg); top: 75px; left: 25px; box-shadow: 0px -5px 0 0px rgba(0,0,0,100); } 

这可能会帮助你

 <img src="http://placedog.com/200/200"> 

CSS样式:

 body { padding: 50px; text-align: center; } img { /* #1 */ border: 5px solid hsl(0, 0%, 40%); /* #2 */ padding: 5px; background: hsl(0, 0%, 20%); /* #3 */ outline: 5px solid hsl(0, 0%, 60%); /* #4 AND INFINITY!!! (CSS3 only) */ box-shadow: 0 0 0 10px hsl(0, 0%, 80%), 0 0 0 15px hsl(0, 0%, 90%); /* If you could do pseudo elements you could get a few more... */ /* Also, HSL is awesome but don't use it if you need super old browser support */ } 

为更多的看这个链接