issue with scroll
I had an issue with this scroll as in this image:
The issue is that I want only the开发者_如何转开发 vertical scroll to appear and not the horizontal scroll. I had used overflow:scroll
attribute while coding. Will it look the same in Firefox and IE or is there any other way to do that?
Just use overflow-x: hidden; overflow-y: scroll;
or overflow: auto;
instead of overflow: scroll;
.
精彩评论