icaptan
icaptan

Reputation: 1535

css , asp.net : fill a division with panels

I have a division filling it with panels. But inside the division the panels are sorted up to down. I want to have them next to each other.

e.g:

panel_1 panel_2 panel_3

panel_4 panel_5 panel_6

panel_7 panel_8 panel_9

How can I succeed this ? Thanks.

Upvotes: 0

Views: 257

Answers (2)

Kieran
Kieran

Reputation: 18059

I would use something like

<div style="width:300px">
    <div style="float:left; width:100px; background:pink;"></div>
    <div style="float:left; width:100px; background:orange;"></div>
    <div style="float:left; width:100px; background:green;"></div>
    <div style="float:left; width:100px; background:blue;"></div>
    <div style="float:left; width:100px; background:white;"></div>
    <div style="float:left; width:100px; background:black;"></div>
</div>

The colours are there for testing and i would make it into a class but you get the point.

Upvotes: 2

Xavier Poinas
Xavier Poinas

Reputation: 19743

Add this your the style of your panels:

float: left;

Upvotes: 2

Related Questions