大家好,我在IE浏览器中使用<li></li>
时遇到问题。我尝试使用display:block
和display:table
将每个项目符号的第二行与第一行正确对齐,但两者都没有效果。
以下是清单:
<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>
答案 0 :(得分:1)
在你的css地方,这会将px的数量调整到你希望它开始的确切位置。
ul.a li {
text-indent:10px;
}
或尝试使用填充而不是列表样式属性。