I'm having a question, I'm creating a html where I will have 3 columns , but the user will resize it anyway you want, however automatically divs
will have to auto adjust !
I'm using the resizable
property of jqueryUI .
I would like to know if you can help me
#container {
width:100%;
text-align:center;
}
#left {
float:left;
width:32%;
height: 20px;
background: #000;
}
#center {
display: inline-block;
margin:0 auto;
width:32%;
height: 20px;
background: #00ff00;
}
#right {
float:right;
width:32%;
height: 20px;
background: #7b8787;
}
<div id="container">
<div id="left"></div>
<div id="center"></div>
<div id="right"></div>
</div>
When stretching any of the divs
to either side they should automatically adjust.