CSS3 Generator
Generator Tools
Web Tools
Random Tools
Others
display: -- flex inline-flex (Thuộc tính cần)
flex-direction: -- row row-reverse column column-reverse
flex-wrap: -- wrap nowrap wrap-reverse
justify-content: -- flex-start flex-end center space-between space-around
align-items: -- flex-start flex-end center baseline stretch
align-content: -- flex-start flex-end center space-between space-around stretch
.container { border: 1px solid #ccc; min-height: 500px; } .container div { margin: 5px; text-align: center; } .container div:nth-child(1) { height: 70px; width: 70px; line-height: 70px; background-color: #444; } .container div:nth-child(2) { height: 60px; width: 60px; line-height: 60px; background-color: #666; } .container div:nth-child(3) { height: 50px; width: 50px; line-height: 50px; background-color: #999; } .container div:nth-child(4) { height: 40px; width: 40px; line-height: 40px; background-color: #ccc; } .container div:nth-child(5) { height: 30px; width: 30px; line-height: 30px; background-color: #ddd; }