Latest Lists

how to do Definition list of items in ASP.Net?

I used the following lines in asp.net in HTML mode. <dl> <dt>Coffee</dt> <dd>Black</dd> <dt>Milk</dt> <dd>White</dd> </dl> It gives no warning in HTML code. Then i changed the mode from HTML mode to Design mode. I did not do anything. Then i changed my mode from Design to HTML mode. Now HTML code gives some warning.

Public Comments

  1. Your list is fine, something else is wrong page wise. Color maybe? Try adding a font color just to make sure your text isn't the same color as the page: <dl style="color: red"> <dt>Coffee</dt> <dd>Black</dd> <dt>Milk</dt> <dd>White</dd> </dl>
Powered by Yahoo! Answers