ppathak35

week2.css

Jun 22nd, 2022 (edited)
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. h1 {
  2.     color: red;
  3.     text-align: center;
  4. }
  5.  
  6. div {
  7.     left: 50%;
  8.     right: 50%;
  9.     position: absolute;
  10.     width: 512px;
  11.     transform: translate(-50%, -50%);
  12.     margin-top: 120px;
  13. }
  14.  
  15. div > p {
  16.     font-size: 1.3rem;
  17.     font-family: cursive;
  18. }
  19.  
  20. img {
  21.     left: 50%;
  22.     right: 50%;
  23.     position: relative;
  24.     transform: translate(-50%, -50%);
  25.     padding-top: 50px;
  26. }
  27.  
  28. .span {
  29.     color: gold;
  30. }
Add Comment
Please, Sign In to add comment