2012-05-15 88 views
1

我只是試圖在ASP.NET aspx頁面中添加項目列表。在HTML中創建項目符號列表

我有如下的代碼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 

回答

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> 
+0

沒有與UL相關類...... – sagesky36

+0

你不需要一類 - 看到答案 - 這個CSS宣告影響所有UL的 - 檢查你的CSS文件(找到「UL」 O r'li') –

+0

通過查看css文件,我指出了正確的方向。我在abbengine.css文件中放置了另一個類,並使用該列表中的特定類來強制要點 – sagesky36

7

聽起來像你使用某種CSS重置。評論出來,然後再試一次,它應該可以工作。

相關問題