I'm currently working on a liquid web design that incorporates a shadow effect on the outside of the content box.
You can view the design here:
To achieve this effect, I have divided the content into one containing div and the shadows into a separate div. Everything works perfectly until the window is resized below the specified min-width values.
The shadows are within a div container with a set width and height of 100%, and a minimum width of 882px (700px for content plus two shadows at 91px each). The left and right shadows are in individual divs with a width of 10% (min-width 91px), while the middle "spacer" div has a width of 80% (min-width 700px). All these divs are set to float left to create the appearance of separate columns. However, when you click the link, you'll notice that the right shadow div disappears when the window size is reduced beyond the min-width limits. I've tried various overflow parameters, clearfix, as well as playing around with absolute positioning, but the issue persists. This method appears to be the most straightforward, despite the disappearing div problem. Any advice would be greatly appreciated.