Full height sidebar and full height content, fluid layout

前端 未结 2 952
名媛妹妹
名媛妹妹 2020-12-29 12:46

Possible duplicate didn\'t help

I know there are many answers about this topic but neither of them helped me and I spent days on this problem. 90% of the answers and

2条回答
  •  滥情空心
    2020-12-29 12:59

    Try something like this:

    FIDDLE

    Markup:

    Hello Plunker!

    content

    CSS

    *
    {
        margin:0;padding:0;
    }
    html,body,.container, .sideBar, .content
    {
        height: 100%;
    }
    h1
    {
        height: 50px;
        line-height: 50px;
    }
    .container
    {
        margin-top: -50px;
        padding-top: 50px;
        box-sizing: border-box;
    }
    .sideBar
    {
        float:left;
        width: 100px;
        background: aqua;
    }
    .content
    {
        overflow:hidden;
        background: yellow;   
    }
    

提交回复
热议问题