Guest User

Untitled

a guest
Dec 14th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <div class="header">
  2. <div class="search-container">
  3. <input type="text" id="search" placeholder="search-here"/>
  4. </div>
  5. </div>
  6. <div class="search-result">
  7. <div class="item">Result of search 1</div>
  8. <div class="item">Result of search 1</div>
  9. <div class="item">Result of search 1</div>
  10. </div>
  11.  
  12. .header {
  13. position: fixed;
  14. top: 0;
  15. width: 100%; /* Get viewport width */
  16. height: 50px;
  17. background: #47c474;
  18. input {
  19. height: 100%;
  20. width: 100%;
  21. border: 0;
  22. }
  23. }
  24. .search-result {
  25. position: fixed;
  26. top: 50px; /* Calculate header's height */
  27. bottom: 0; /* Make full height of viewport */
  28. width: 100%; /* get full width of viewport */
  29. overflow-y: scroll;
  30. -webkit-overflow-scrolling: touch; /* smooth scroll */
  31. }
Add Comment
Please, Sign In to add comment