HTML dir: Main Tips
- The HTML
<dir>
 element represented an HTML directory listing. - You should use <ul> instead of the
<dir>
 HTML for creating lists.
Pros Main Features
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
Pros Main Features
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
Pros Main Features
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
How dir Was Used
HTML <dir>
specified an HTML directory listing just like an un-ordered list. HTML5 no longer supports this element.
Example
<dir>
 <li>HTML</li>
 <li>CSS</li>
 <li>JavaScript</li>
</dir>
compact (DEPRECATED)
It indicates that a list should be presented in a compact style. The actual results depend on the user agent. compact
is not supported in HTML5.
Note: apply CSS line-height property instead.
Example
<dir compact>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</dir>
Browser support
Chrome
-
Edge
-
Firefox
-
IE
-
Opera
-
Safari
-
Mobile browser support
Chrome
-
Firefox
-
Opera
-
Safari
-