Jump to content

<div> Problem with IE


mpower

Recommended Posts

you can' assign two backgrounds to one div but if you set a fixed width you don't need to.

 

if you want a fluid layout then you would need 5 divs.

 

3 div version.

<div id="top">
</div>
<div id="form">
// all your text and form stuff...
</div>
<div id="bottom">
</div>

 

css

div#top
{
background: transparent url(/path/to/topimage) no-repeat top left;
width: (image width)px;
height: (image height)px;
}
div#bottom
{
background: transparent url(/path/to/bottomimage) no-repeat bottom left;
width: (image width)px;
height: (image height)px;
}
div#form
{
border-left: 1px solid #666;
border-right: 1px solid #666;
}

Link to comment
https://forums.phpfreaks.com/topic/52295-problem-with-ie/#findComment-258180
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.