在IE 9中列出垂直对齐

时间:2016-07-05 14:38:36

标签: html css internet-explorer

enter image description here

大家好,我在IE浏览器中使用<li></li>时遇到问题。我尝试使用display:blockdisplay: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&#x27;s database environment, assessing the infrastructure, schema and applications.</span>
     </li>
</ul>

1 个答案:

答案 0 :(得分:1)

在你的css地方,这会将px的数量调整到你希望它开始的确切位置。

 ul.a li {
   text-indent:10px;
 } 

或尝试使用填充而不是列表样式属性。