I have a div element that can scroll vertically, but I want the scrollbar to be positioned outside of the div just like in a regular webpage. The scrollbar should only affect this particular div and not the entire page.
<div id="outer">
<div id="inner"> //content that will be scrolled
<!-- content -->
</div>
</div>
For reference, you can check out an example Fiddle: http://jsfiddle.net/7pgyt/
The desired layout would include the scrollbar on the far right side within the red area, allowing scrolling for the blue area only. Is it possible to achieve this using just HTML and CSS?
A potential result could look something like the following: