如何设置子div的高度?

时间:2019-04-09 18:01:46

标签: html css

我在另一个div中有一个div,其高度为48px,相对位置。现在我在div中有一个子div,其高度为48px。我希望将子div的最大高度设置为80%,将最小高度设置为40%。这样,子div的高度仅为48px。

下面是代码,

<div class="top_div">
    <div class="drawer">
        <div class="menu">
            <header>
                <Svg>
                <button></button>
            </header>
            <ul>
                <li></li>
            </ul></div></div></div>


.top_div {
    z-index: 1;
    display: flex;
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 12px 0 12px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    align-items: center;
}

.drawer {
    display: flex;
    flex-direction: column;
    background-color: $white;
    position: absolute;
    width: 380px;
    top: 55px;
    right: 8px;
    min-height: 40%;
    max-height: 80%;

    header {
        height: 41px;
        border-bottom: 1px solid #CCCCCC;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 0px;
        padding-top: 2px;

        svg {
            margin-left: 16px; 
        }
   }

   ul {
       overflow-x: hidden;
   }

   ::after {
       content: " ";
       position: absolute;
       bottom: 100%;
       left: 83%;
       margin-left: -5px;
       border-width: 14px;
       border-style: solid;
       border-color: transparent transparent $white transparent;
   }
} 

如果我删除top_div的position:相对,那么它很好用,但是删除了topbar的盒子阴影...我该如何解决。我希望盒子阴影在那里。或者如果我保持position:relative为top_div,那么我希望抽屉的高度为80%。

我该如何解决。有人可以帮助我。谢谢。

1 个答案:

答案 0 :(得分:0)

我将代码插入到html文档中,并将您孩子的div的position设置为relative。对我来说,这解决了这个问题,我很清楚地知道您想做什么。

尝试一下。

我希望这会有所帮助,对我来说有帮助。