style.css 259 B

123456789101112131415
  1. *{
  2. box-sizing: border-box;
  3. }
  4. .flex-item{
  5. width: 150px;
  6. height: 150px;
  7. background: hsl(0, 0%, 80%);
  8. border: 1px solid red;
  9. font-size: 30px;
  10. }
  11. .flex-container{
  12. background: yellow;
  13. /* display: flex; */
  14. display: inline-flex;
  15. }