2016-07-05 13 views
0

enter image description here一覧垂直揃えIE 9

こんにちはすべてで、私はIEブラウザで<li></li>を使用して問題が発生しています。私はdisplay:blockdisplay:tableを使って、各箇条書きの2番目の行を最初の行に正しく整列させようとしましたが、どちらも機能しませんでした。ここで

はリストである:

<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

あなたのCSSの場所で、これはそれを起動するためにあなたが望む正確な場所にピクセルの数を調整します。

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

リストスタイルプロパティの代わりにパディングを使用してみます。

+0

YAHですが、Chrome上で動作します。インターネットでしか使用できません。 – Fenici

+0

すべてのブラウザで動作するように 'padding-left'を使用してください。 –

+0

私はlist-style-position:insideを使用していました。私はおそらくこの物件に乗るべきです – Fenici

関連する問題