Seeking assistance:
Sample: http://jsfiddle.net/JQaLs/1/
How can I prevent the goods from moving downwards?
Issue occurs when using:
float:left;
they start to move down.
Apologies for my poor English.
Update 1: When a good is clicked, the table should appear on the next row, while the other goods in that row remain in their original positions. The layout is flexible and the goods need to be arranged in rows.
Update 2: "Good" refers to "Product".
Update 3: I have been experimenting and would like it to look like this: http://jsfiddle.net/JQaLs/8/
display: inline-block;
Solution: I have resolved this issue: Thanks to prerit ahuja for suggesting the use of div blocks. I implemented
display: inline-block;
within the ".models" div and added a div to ".types" as well, utilizing
display: inline-block;
as well.
Thank you all. For an example, please visit jsfiddle.net/JQaLs/9/ (Unable to provide a third link due to low reputation).