Guest User

Untitled

a guest
Dec 19th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <div class="container-fluid" style="background-color:#F44336;color:#fff;height:200px;">
  2. <h1>Bootstrap Affix Example</h1>
  3. <h3>Fixed (sticky) navbar on scroll</h3>
  4. <p>Scroll this page to see how the navbar behaves with data-spy="affix".</p>
  5. <p>The navbar is attached to the top of the page after you have scrolled a specified amount of pixels.</p>
  6. </div>
  7.  
  8. <div class="navbar navbar-inverse" style="background-color:#026;" data-spy="affix" data-offset-top="197">
  9. <div class="container">
  10. <div class="navbar-header">
  11. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  12. <span class="icon-bar"></span>
  13. <span class="icon-bar"></span>
  14. <span class="icon-bar"></span>
  15. </button>
  16. </div>
  17. <div class="navbar-collapse collapse">
  18. <ul class="nav navbar-nav">
  19. <li>@Html.ActionLink("ՏԵՍԱԿՆԵՐ", "Index", "Home")</li>
  20. <li>@Html.ActionLink("ՕԳՏԱԿԱՐ ՆՅՈՒԹԵՐ", "About", "Home")</li>
  21. <li>@Html.ActionLink("ԿԼԻՆԻԿԱՆԵՐ", "Contact", "Home")</li>
  22. <li>@Html.ActionLink("ԲԺԻՇԿՆԵՐ", "Contact", "Home")</li>
  23. <li>@Html.ActionLink("ՆՈՐՈՒԹՅՈՒՆՆԵՐ", "Contact", "Home")</li>
  24. <li>@Html.ActionLink("ԲԼՈԳ", "Contact", "Home")</li>
  25. </ul>
  26. </div>
  27. </div>
  28. </div>
  29.  
  30.  
  31. .affix {
  32. top: 0;[enter image description here][1]
  33. width: 100%;
  34. z-index: 9999 !important;
  35. }
  36.  
  37. .affix + .container-fluid {
  38. padding-top: 70px;
  39. }
Add Comment
Please, Sign In to add comment