Guest User

Untitled

a guest
Jun 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. body, html {
  2. /* img cover all page */
  3. height: 100%;
  4. /* margin padding to Zero*/
  5. margin: 0;
  6. padding: 0;
  7. }
  8.  
  9. .bgimg {
  10. /* bg image */
  11. background: url(bgimg.jpg);
  12. /* full screen */
  13. height: 100%;
  14. /* center the bg imag */
  15. background-position: center;
  16. /* scale and zoon in the img */
  17. background-size: cover;
  18. /* add position: relative to enable absultely position elements inside the img (place text) */
  19. position: relative;
  20. /* add a white text inside the bgimg container */
  21. color: #fff;
  22. /* add font */
  23. font-family: cursive;
  24. }
Add Comment
Please, Sign In to add comment