如何将箭头叠加到下面的div中?

时间:2012-05-05 21:00:17

标签: css3

我试图让箭头重叠到它下方的div上(灰色箭头与http://tinyletter.com上的红色重叠的方式)。

以下是我目前使用的代码:

#box_1 {
height: 550px;
width: 100%;
font-size: 4.5em;
font-weight: 600;
float: center;
text-align: center;
background-color: #ededed;
padding: 55px 0 0 0;
}

.arrow-down {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 50px solid #ededed;
margin-left:auto;
margin-right:auto;
}

#box_2 {
height: 600px;
width: 100%;
font-size: 7em;
float: center;
text-align: center;
background-color: #ed2227;
}

1 个答案:

答案 0 :(得分:3)

如果您能够依赖::after(或::before)伪元素的使用,那么只需使用border s就可以了:

#top {
    position: relative;
    background-color: #ccc;
}

#top::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    margin: 0 0 0 -1em;
    border: 1em solid transparent;
    border-top: 1em solid #ccc;
}

JS Fiddle demo