javascript - Left/Right position a div -
so, i've navigation bar , <div> tag class="container-fluid" , id="scrollable" css property below.
#scrollable { position: absolute; overflow-y: scroll; top: 60px; bottom: 0; } but, when problem is, page not taking entire width on right side.
how make right position value 0, 72.406
okay so, i've made following changes id
#scrollable { position: absolute; overflow-y: scroll; top: 60px; bottom: 0; right: 0; left: 17.5%; } and solves problem.

Comments
Post a Comment