I have a layout like this:
[left-image] | [title-------------------------------------]
(width up to 150) | [left-floated-p -----------[right-floated-p]
|
| lots of text................................
The only way I could implement this is by using float:left on the “left-image” and display:table-row on the contents from the right side.
The problem is that this doesn’t seem to work in IE 7 🙁
Are there any fixes for it? or other alternatives to implement such a layout?
note that I can’t use margin-left on the right blocks because I don’t know the exact size of the left image + I have 2 floats on the right side and clearing them messes up the layout…
Unfortunately IE 7 doesn’t support it. A quick solution:
CSS
HTML
You would need to make the text and headline prettier, but this works.