html_css
41 строка · 731.0 Байт
1* {2box-sizing: border-box;3}
4
5body {6padding: 0;7margin: 0;8}
9.container {10background: #fffd6f;11padding: 10px;12display: flex;13height: 500px;14/*justify-content: flex-end;*/15/*justify-content: center;*/16/*justify-content: flex-start;*/17/*justify-content: space-between;*/18/*justify-content: space-around;*/19/*justify-content: space-evenly;*/20/*align-items: center;*/21/*align-items: flex-start;*/22/*align-items: stretch;*/23align-items: baseline;24}
25
26.item {27background: #ffd057;28padding: 30px;29margin: 10px;30/*height: 200px;*/31}
32.item-1 {33font-size: 40px;34}
35.item-2 {36font-size: 25px;37}
38.item-3 {39font-size: 13px;40padding-top: 80px;41}