Gopard
Gopard

Reputation: 1060

css "position:fixed; overflow:auto;" bad bottom padding

Page Fixed right-hand side and place under the headline. jsfiddle exapmle looks the way I want, but the scroll bar is beyond the edge of the screen. How to fix this situation?

  position:fixed;
  top:120px;
  bottom:0;
  padding-bottom:120px;
  overflow:auto;
  height: 100%

jsfiddle exapmle of use

Upvotes: 0

Views: 100

Answers (1)

lazy panda
lazy panda

Reputation: 156

deleting height:100% on .main-body-grid > .grid-left, .main-body-grid > .grid-right and .main-body-grid > .grid-left worked for me

Upvotes: 1

Related Questions