i am trying to work out how to make 2 divs where 1 is fixed width and the other is flexible.
<--- 250 px ---><--- 100% width flexible with browser width --->
It is done with the middle content of this site but i am more comfortable coding php than html.
The code i have just now works for safari and firefox but for ie it pushes the right div below the left one.
<--- 250 px ---><--- 100% width flexible with browser width --->
It is done with the middle content of this site but i am more comfortable coding php than html.
The code i have just now works for safari and firefox but for ie it pushes the right div below the left one.
HTML:
#left {
float: left;
width: 250px;
border: 1px solid #000;
}
#right {
display: block;
width: 100%;
border: 1px solid #000;
}