HTML Dl Tag | dl Tag | HTML <dl> Tag Tutorial by WDH

HTML Dl Tag


Define :
It is defines a description list.
It is used in conjunction with <dt> and <dd>.


For example :
 
Output :
                           
Browser Support :
 All browsers are supported like opera, chrome, Microsoft edge, firefox.

Global and Event Attributes :
This tag also supports the Global and Event Attributes in HTML.

Default CSS Settings :
Most browsers will display the <dl> element with the help of CSS.

dl {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}