How to align content of a div to the bottom

后端 未结 26 2558
挽巷
挽巷 2020-11-22 01:13

Say I have the following CSS and HTML code:

26条回答
  •  无人及你
    2020-11-22 01:56

    #header {
        height: 150px;
        display:flex;
        flex-direction:column;
    }
    
    .top{
        flex: 1;
    }   
    
    
    

    #header {
        height: 250px;
        display:flex;
        flex-direction:column;
        background-color:yellow;
    }
    
    .top{
        flex: 1;
    }

提交回复
热议问题