Guest User

Untitled

a guest
Jun 26th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | None | 0 0
  1. section {
  2.     background: red;
  3.     border: 2px solid black;
  4.     text-align:center
  5. }
  6.  
  7. article {
  8.     background: yellow;
  9.     display: inline-block;
  10.     border: 2px solid black;
  11.     width: 30%;
  12.     margin: 5px 0;
  13.     height: 300px;
  14.   position: relative;
  15. }
  16. p {
  17.     margin: 0;
  18.     position: absolute;
  19.     top: 50%;
  20.     left: 50%;
  21.     -ms-transform: translate(-50%, -50%);
  22.     transform: translate(-50%, -50%);
  23. }
Add Comment
Please, Sign In to add comment