Advertisement
Guest User

CSS

a guest
Aug 13th, 2022
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.30 KB | None | 0 0
  1. #wrapper  {
  2.   display: flex;
  3.   justify-content: center;
  4.  
  5.   margin: 10px;
  6. }
  7.  
  8. #div1,
  9. #div2  {
  10.   display: inline-flex;
  11.   justify-content: center;
  12.  
  13.   width: 200px;
  14.   height: 200px;
  15.   line-height: 200px;
  16.  
  17.   color: green;
  18.   font-size: 25px;
  19.  
  20.   margin: 10px;
  21.   border: 1px green solid;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement