Position Fixed width 100%

前端 未结 3 749
日久生厌
日久生厌 2020-12-08 00:17

I have a position:fixed left column at 250px wide with 100% height and I\'m trying to place a fixed, fluid horizontal bar at the top but to the right of the lef

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 00:26

    Try this

    .left-column {
        float:left;
        width:150px;
        height:100px;
        background:#090909;
        color:white;
    }
    
    .top-bar {
        margin-left:150px;
        background:yellow;
        border:2px solid red;
    }
    

    http://jsfiddle.net/jGP5Y/87/

提交回复
热议问题