My goal is to align a div next to another div whose contents have a width: 100%
. Here is the current markup:
<div id="left_sidebar" style="float: left; height: 100%; width: 150px;"></div>
<div id="outer_wrapper" style="position: relative; float: left;"></div>
Most elements within #outer_wrapper
are set to 100% width. However, this setup doesn't seem to be working as expected.
I have created a FIDDLE to demonstrate the issue.