flex태그

center;
flex-end;
flex-start;
space-around
space-beween;

/*day53-1_style.css*/
div.flexbox{}
/*플렉서블 박스*/
div.flexbox>section{
    display: flex;
    background-color: #eee;
    /*수평으로 정렬되있는상태*/
    justify-content: space-between;
    align-items: baseline;
    /*▲dp:flex일때default 값*/
}

/*플렉스아이템*/
div.flexbox>section>article{
    flex-direction: row-reverse;
    width: 160px;
    height: ;
    background-color: #fc0;
}

/*div.flexbox>section>article>h3{
    line-height: 40px;
    font-weight: bold;
    font-size: 36px;
}
div.flexbox>section>article>p{
    line-height: 40px;
}
div.flexbox>section>article>div{
    margin-top: 20px;}

div.flexbox>section>article>.box01{
    height: 200px;
    background-color: #f90;
}
div.flexbox>section>article>.box02{
    height: 320px;
    background-color: #09f;
}*/

Comments

Popular Posts