Reputation: 461
Hi all, I am having problem with using <li></li>
in the IE browser. I have tried using display:block
and display:table
to correctly align the second line of each bullet with the first, but neither has worked.
Here is the list:
<ul class="a">
<li>
<span>The customer provides the database schema files, which include SQL statements (DDLs of all the database objects and stored procedures), and the application source code.</span>
</li>
<li>
<span>Fujitsu performs the migration analysis. An experienced consultant with the help of our proven migration assessment tool will analyze your organization's database environment, assessing the infrastructure, schema and applications.</span>
</li>
</ul>
Upvotes: 0
Views: 81
Reputation: 456
in your css place this adjust number of px to exact location where you wish for it to start.
ul.a li {
text-indent:10px;
}
or try to use padding instead of list style property.
Upvotes: 1