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.

here rendering details.

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

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -