Horje
HTML <dir> Tag

Not Supported in HTML5.

The <dir> tag was used in HTML 4 to list directory titles.

It is also Defined a directory list.


What to Use Instead of HTML <dir> Tag?

Use <ul> to create a directory list
index.html
Example: HTML
<ul>
  <li>html</li>
  <li>xhtml</li>
  <li>css</li>
</ul>  

Output should be:

What to Use Instead of HTML <dir> Tag?

How to Reduce line-height in a list (with CSS)

Reduce line-height in a list (with CSS)

index.html
Example: HTML
<ul style="line-height:80%">
  <li>html</li>
  <li>xhtml</li>
  <li>css</li>
</ul>  

Output should be:

How to Reduce line-height in a list (with CSS)





Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference