Guest User

Untitled

a guest
Oct 23rd, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. /* First image (Logo. Full height) */
  2. .bgimg-1 {
  3. background-image: url('/w3images/parallax1.jpg');
  4. min-height: 100%;
  5. }
  6.  
  7. /* Second image (Portfolio) */
  8. .bgimg-2 {
  9. background-image: url("/w3images/parallax2.jpg");
  10. min-height: 400px;
  11. }
  12.  
  13. /* Third image (Contact) */
  14. .bgimg-3 {
  15. background-image: url("/w3images/parallax3.jpg");
  16. min-height: 400px;
  17. }
  18.  
  19. https://w3schools.com/w3images/parallax1.jpg
  20.  
  21. file:///w3images/parallax1.jpg
  22.  
  23. /* First image (Logo. Full height) */
  24. .bgimg-1 {
  25. background-image: url('https://w3schools.com/w3images/parallax1.jpg');
  26. min-height: 100%;
  27. }
  28.  
  29. /* Second image (Portfolio) */
  30. .bgimg-2 {
  31. background-image: url("https://w3schools.com/w3images/parallax2.jpg");
  32. min-height: 400px;
  33. }
  34.  
  35. /* Third image (Contact) */
  36. .bgimg-3 {
  37. background-image: url("https://w3schools.com/w3images/parallax3.jpg");
  38. min-height: 400px;
  39. }
Add Comment
Please, Sign In to add comment