Liam Treacy
Liam Treacy

Reputation: 1

CSS Overflow scrollbar blocking bottom of image

I'm attempting to hide the vertical scrollbar of an image, while providing a horizontal one when necessary. The CSS I'm using is

style="overflow-x:auto; overflow-y:hidden;"

This is fine but I am running into an issue where the bottom part of the image is blocked by the horizontal scrollbar. Is there a way to add the bar 'beneath' the image?

Thanks

Upvotes: 0

Views: 133

Answers (1)

madeye
madeye

Reputation: 1406

You can move your horizontal scrollbar with padding

#img_parent {
   overflow-x:auto;
   overflow-y:hidden;
   padding-bottom: 10px;
}

Upvotes: 1

Related Questions