Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #textBoxContainer {
  2. width:100%;
  3. height:30%;
  4. position:fixed;
  5. z-index:99;
  6. bottom:0px;
  7. left:0px;
  8. background-color:#999;
  9. border: 4px solid #000;
  10. }
  11.  
  12. <div id="textBoxContainer"></div>
  13.  
  14. #textBoxContainer {
  15. height: 30%;
  16. position: fixed;
  17. z-index: 99;
  18. bottom: 0;
  19. left: 0;
  20. right: 0;
  21. background-color: #999;
  22. border: 4px solid #000;
  23. }
  24.  
  25. -webkit-box-sizing: border-box;
  26. -moz-box-sizing: border-box;
  27. -ms-box-sizing: border-box;
  28. box-sizing: border-box;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement