如何使用::after定位CSS三角形?

yks3o0rb  于 2023-01-27  发布在  其他
关注(0)|答案(3)|浏览(216)

我使用::after创建了一个带有下箭头的div,下面是HTML代码:

<div class="sidebar-resources-categories">Topics</div>
<div class="text-content">ok ok</div>

下面是CSS:

.sidebar-resources-categories{
    height: 50px;
    margin-bottom: 20px;
    background-color: #e8e8e8;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
}
.sidebar-resources-categories::after{
    content: '';
    position: absolute;
    left: 42%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #e8e8e8;
    clear: both;
}

结果如下:

我希望箭头在灰色div的最底部。我不希望内容在div和底部箭头之间。你知道我该怎么做吗?

d6kp6zgx

d6kp6zgx1#

只需将position:relative添加到父元素.sidebar-resources-categories
http://jsfiddle.net/matthewabrman/5msuY/
说明:::after元素的位置基于其父元素,在您的示例中,您可能有一个. sidebar-res的父元素,它有一个设置的高度,因此它就呈现在它下面。添加相对于. sidebar-res的位置会使after元素移动到它的父元素的100%,现在成为. sidebar-res ...因为它的位置设置为相对。我不知道如何解释,但这是预期的行为。
阅读更多关于这个主题的内容:http://css-tricks.com/absolute-positioning-inside-relative-positioning/

f87krz0w

f87krz0w2#

添加类:

.com_box:after {
     content: '';
    position: absolute;
    left: 18px;
    top: 50px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #000;
    clear: both;

}

更新了您的jsfiddle:http://jsfiddle.net/wrm4y8k6/8/

0qx6xfy6

0qx6xfy63#

可以使用position属性设置三角形,如下所示:

.top-left-corner {
        width: 0px;
        height: 0px;
        border-top: 0px solid transparent;
        border-bottom: 55px solid transparent;
        border-left: 55px solid #289006;
        position: absolute;
        left: 0px;
        top: 0px;
    }

相关问题