Fixed positioned element in overflow:scroll

h00p777

New Member
I'm trying to make an element be always in top-right side of the window.The problem is that when scrollbar appears, it keeps same position and ignores size of scrollbar. How it looks now:
egGdX.jpg
How I'd like it to look:
KB4EJ.jpg
\[code\].outer { position: relative; height: 100px; overflow-x: hidden; overflow-y: auto; width: 100%;}.icon { position: fixed; right: 0; top: 0; background: red; width: 10px; height: 10px; }\[/code\]?The fiddle: http://jsfiddle.net/L5YhF/Are there any hacks how to fix it?Thank you.
 
Back
Top