0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

htmlの用語説明

0
Last updated at Posted at 2020-06-28

dl要素description listの略
dt要素description termの略
dd要素description definitionの略

使い方

<dl>
  <dt>用語1</dt>
  <dd>説明1</dd>

 <dt>用語2</dt>
  <dd>説明2</dd>
</dl>

・結果
用語1
 説明1
用語2
 説明2

tr要素table rowの略
td要素table data cellの略
th要素table headerの略

colspan要素column spanの略

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?