Advertisement
rogerin

barra progresso horizontal

Jan 21st, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.77 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3.  
  4. #outer {
  5.     width: 30px;
  6.     height: 140px;
  7.     border: 2px solid #ccc;
  8.     overflow: hidden;
  9.    
  10.     position: relative;
  11.    
  12.     -moz-border-radius: 4px;
  13.     -webkit-border-radius: 4px;
  14.     border-radius: 4px;
  15. }
  16.  
  17. #inner, #inner div {
  18.     width: 100%;
  19.     overflow: hidden;
  20.     left: -2px;
  21.     position: absolute;
  22. }
  23.  
  24. #inner {
  25.     border: 2px solid #999;
  26.     border-top-width: 0;
  27.     background-color: #999;
  28.    
  29.     bottom: 0;
  30.     height: 0%;
  31. }
  32.  
  33. #inner div {
  34.     border: 2px solid orange;
  35.     border-bottom-width: 0;
  36.     background-color: orange;
  37.    
  38.     top: 0;
  39.     width: 100%;
  40.     height: 5px;
  41. }
  42.  
  43.  
  44. </style>
  45.  
  46.  
  47.  
  48. <div id="outer">
  49.     <div id="inner" style="height:80%">
  50.         <div></div>
  51.     </div>
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement