滚动条显示在达到最大高度之前

时间:2014-07-03 10:44:19

标签: html css sass

FIDDLE DEMO

我遇到了一个问题,我有一个设置了max-height的容器,但由于未知原因,包装器会不断显示垂直滚动条。

我唯一能找到问题的是:after类上的.right伪类。如果我删除它滚动条去。为什么是这样? :after内容绝对定位,不应对滚动条产生任何影响......

作为参考,max-height

上设置了未到达的.emails

这是重要的CSS - 小提琴上的几个额外位;

.indicator_triangle {
    position: absolute;
    bottom: -24px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 12.5px 20px 12.5px;
    border-color: transparent transparent #fff transparent;
}
.comm_dd {
    position: absolute;
    top: 15px;
    border: 3px solid $green;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 3px solid $green;
    width: 170px;
    background-color: #fff;
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 5px;
    width: 350px;
    font-size: 12px;
    .e_container {
        .emails {
            overflow-y: auto;
            // min-height: 180px;
            max-height: 350px;
            border-top: 1px solid $grey_med;
        }
        h4 {
            margin-top: 0;
            margin-bottom: 5px
        }
        p {
            color: #888;
            margin-bottom: 4px;
        }
    }
    .left {
        width: 72%;
        float: left;
        div {
            margin-right: 15px;
        }
    }
    .right {
        width: 25%;
        float: left;
        font-size: 11px;
        &:after {
            position: absolute;
            top: 14px;
            right: 4px;
            content:"\00b0";
            font-size: 32px;
        }
    }
    .subj {
        font-weight: bold;
    }
    li {
        line-height: 16px;
        a {
            position: relative;
            padding: 6px 5px;
            display: block;
            color: $grey;
            border-top: 1px solid #ddd;
            color: #888;
            padding: 7px 5px;
            &:hover {
                background-color: darken(#fff, 10%);
            }
        }
        .remaining_count {
            top: 9px;
            right: 9px;
        }
        &:first-child a {
            border-top: none;
        }
    }
    .indicator_triangle {
        top: -15px;
        left: 5px;
    }
}

1 个答案:

答案 0 :(得分:1)

您可以设置overflow:hidden到.comm_dd li选择器,以防止:after伪内容导致列表项溢出。