My webpage features a visual element known as a "plan", which consists of a small table and an image. I want these two elements to appear side by side without any styling. Currently, they are displayed one below the other. You can view how it looks like here: http://jsfiddle.net/DCTwd/1/
I attempted to use the CSS property float: left
on both the table and the image within a list item (li
), but this did not produce the desired result. I am now wondering if it is not possible to use float: left
inside a li
. If that is the case, I would appreciate any guidance on how to achieve the layout I am aiming for.