Advertisement
mauricemuteti

css slideshow

May 5th, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. *{
  2.     padding: 0px;
  3.     margin: 0px;
  4. }
  5.  
  6. #container {
  7.     width:900px;
  8.     height: auto;
  9.     margin-left: auto;
  10.     margin-right: auto;
  11. }
  12.  
  13. #sliderdiv {
  14.     height: 400px;
  15.     width: 100%;
  16.     position:relative;
  17. }
  18.  
  19.  
  20. #left {
  21.     height:80px;
  22.     width:80px;
  23. }
  24.  
  25.  
  26. #buttons {
  27.     height:100px;
  28.     width:100%;
  29.     position:absolute;
  30.     top:28%;
  31.  
  32. }
  33.  
  34.  
  35. .next {
  36.     float:right;
  37.     line-height:100px;
  38.     }
  39.  
  40. .previous {
  41.     float:left;
  42.     vertical-align:center;
  43. }
  44.  
  45.  
  46. #caption {
  47.     height:100px;
  48.     width:100%;
  49.     background-color:black;
  50.     position:absolute;
  51.     opacity:0.5;
  52.     bottom:0;
  53.     color:white;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement