Ahoj, how i can stretch sidebar height down to footer when content height is > always bigger than the sidebar? >
The fauxcolumn technique (http://www.alistapart.com/articles/fauxcolumns/) works very well. It uses a background-image that repeats vertically inside the container. This background image simulates full-height columns. Another alternative is faux absolute positionning ( http://www.alistapart.com/articles/fauxabsolutepositioning/) but it only works with color fills, not background-image (a bit heavy on the markup side, so I've never tested it myself). For now, it is impossible to force a block to have the same height as another unless the former is contained in the latter. All techniques work around this by wrapping content and sidebar in a container div and clearing them to ensure that the container div has a height (which will be equal to the content or sidebar, whichever is tallest). The CSS3 layout module should give us ways to achieve that kind of layout without the extra markup, but it isn't usable yet, unfortunately. In most cases, the FauxColumn tecnique is just what you need. Hope that helps. -- Goulven Champenois --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
