5

我想只使用 CSS 来创建它。这可能吗?如果是这样,你们能帮帮我吗?

在此处输入图像描述

4

3 回答 3

5

使用边框和伪元素相当容易:

<a href="#" id="button">ALL</a>

#button::after {
    content: "";
    border: 64px solid transparent;
    border-top: 12px solid orange;
    position: absolute;
    top: 29px;
    left: 0;
}

演示

于 2013-04-25T10:52:36.787 回答
3

尝试使用这个基本按钮:

.btn {
    width: 100px;
    height: 30px;
    text-align: center;
    border: 0;
}
.btn-arrow {
    position: relative;
    background: coral;
}
.btn-arrow:after {
    border: solid transparent;
    content:"";
    position: absolute;
    border-top-color: coral;
    border-width: 16px 50px;
    left: 0px;
    top: 100%;
    margin-top: 0px;
}

http://jsfiddle.net/dfsq/tNjCb/1/

于 2013-04-25T10:52:20.100 回答
2

像下面这样的东西怎么样:

http://jsfiddle.net/WDCu3/

<div id="test">Testing</div>
<div id="arrow"></div>

#test {background-color:red; width:100px;}
div {text-align:center;}

#arrow {
    border-top: 15px solid red;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    height: 0;
    width:0;
}
于 2013-04-25T10:52:46.643 回答