带有检查标志的右上角三角形

时间:2013-07-19 08:23:01

标签: css

我正在尝试找到一种更好的方法来创建一个带有CSS的校验符号的右上角三角形:

Result of CSS

到目前为止,我使用三个CSS元素生成三角形:

.arrow_down {
    width: 0; 
    height: 0; 
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-top: 200px solid #f00;
}

.arrow_left {
    margin-top: -200px;
    margin-left: 200px;
    width: 0; 
    height: 0; 
    border-top: 200px solid transparent;
    border-bottom: 200px solid transparent; 
    border-right:200px solid blue; 
}

.arrow_text { 
    font-size: 180px; 
    color: white; 
    margin-top: -200px; 
    margin-left: 0px; 
}

我相应地嵌入了三角形:

<div id="triangle"><div class="arrow_down"></div><div class="arrow_left"><div class=arrow_text>✔</div></div></div>

我无法切换到图像,因为我需要能够灵活地更改颜色。 是否有更好(=更简单)的方法来创建和嵌入带有复选标记的三角形?

1 个答案:

答案 0 :(得分:3)

另一个div变体(see fiddle):

.arrow {
    width: 400px;    
    height: 400px;
    letter-spacing: 20px;
    font: bold 200px/1 sans-serif;
    text-align: right;
    color: #fff;
    position: relative;
}

.arrow::before {
    content: '';
    border: 200px solid;
    border-color: #f00 #00f rgba(0,0,255,0) rgba(255,0,0,0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}