1

ASP.NETaspxページに箇条書きを追加しようとしています。

aspxページに以下のコードがあります...ご覧のとおり、ulタグで使用されているクラスはありません...

 <ul type="circle">
                        <li>Upon receipt and inspection of the returned merchandise, credit will be issued based
                            on purchase price. Merchandise not originally purchased from xyz will be
                            credited at the current lowest market price.</li>
                        <li>All returns are subject to a handling fee.</li>
                        <li>It is recommended to allow 14 business days for a credit to be processed. Please
                            note, merchandise returned at the end of the month may not be processed in time
                            to be reflected on the current month’s statement.</li>
                        <li>Merchandise that is deemed as unacceptable per manufacturer’s policy will not be
                            credited and will be returned at the customer’s expense.</li>
                    </ul>

以下は出力です。箇条書きではありません。私は何が間違っているのですか?

aaaaaaaa
bbbbbbbb
cccccccc
dddddddd
4

2 に答える 2

7

ある種のCSSリセットを使用しているようです。コメントアウトして再試行してください。機能するはずです。

于 2012-05-15T18:54:31.747 に答える
1

cssを確認する必要があるようです

言っているcssを確認してください

 ul, li { display:inline; AND list-style:none; OR float:left; }

順序付けられていない「箇条書き」リストのマークアップは(それがあなたが求めていたものである場合)です。

 <ul>
  <li>aaaaaaa</li>
  <li>bbbbbbbbb</li>
  <li>ccccc</li>
  <li>dddddd</li>
  <li>eeeeee</li>
</ul>
于 2012-05-15T18:58:39.270 に答える