Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.48 KB | None | 0 0
  1. .box .overbox {
  2.     width: 100%; /* Makes the overlay full width */
  3.     height: 100%; /* Makes the overlay full height */
  4. }
  5.  
  6. .box img {
  7.     width: 100%; /*Makes the image stretch full width */
  8. }
  9.  
  10. .box .overlay-text-container {
  11.     position: absolute; /* Absolute positioning for absolute centering of the text */
  12.     left: 50%; /* Push 50% from left */
  13.     top: 50%; /* Push 50% from top */
  14.     transform: translate(-50%, -50%) !important; /* Positioning to the center */
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement