I have created a three part list (options 1, 2 and 3). Each option has a <ul> which lists the requirements.
Here is the CSS:
HTML Code:
ul {
list-style-type:disc;
list-style-position:outside;
}
#steps123 {
margin-left:130px;
width:230px;
text-align:left;
}
#steps123 img {
float:left;
margin-right:40px;
}
Here is the HTML:
HTML Code:
<div id="steps123">
<img alt="no money down mortgage loans" src="/images/1.gif">
<ul>
<li>Amazing credit history</li>
<li>Solid job stability.</li>
<li>NO bankruptcies.</li>
<li>Borrow up to 103%</li>
</ul>
<img alt="buy no money down" src="/images/2.gif">
<ul>
<li>Good credit history</li>
<li>Solid job stability</li>
<li>NO bankruptcies</li>
<li>No derogatory credit in the last 2 years</li>
</ul>
<img alt="real estate no money down" src="/images/3.gif">
<ul>
<li>Fair credit history</li>
<li>Strong job stability</li>
<li>Discharged bankrupt minimum 2 years</li>
<li>Established credit for at least 1 year</li>
</ul>
</div>
I'm assuming this error is IE specific but hoping there is a work around.
As you can see, I am displaying an image which is to float:left of the <ul> tags. The list displays the requirements for each option and wraps to the next line where the text is too long for the div. However, in IE only, the last option goes beyond the margin of the image and the last option (when the text wraps), wraps under the image instead of within the bullets.
Is there a work around??
|