Facebook
From Little Hog, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 114
  1. .block{
  2.     background-color:red;
  3.     width: 200px;
  4.     height:200px;
  5.     border: 1px solid black;
  6. }
  7.  
  8. span{
  9.     background-color: blue;
  10.     width: 100px;
  11.     height: 100px;
  12.     display: block;
  13.     border: 1px solid black;
  14. }
  15. .content{
  16. display: flex;
  17. height: 100%;
  18. flex-direction: row;
  19. justify-content: space-evenly;
  20. }
  21.