13
7

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.

株式会社ビットエーAdvent Calendar 2017

Day 1

divでdtとddをグルーピングできる

Last updated at Posted at 2017-12-01

最新のHTML(2017年12月3日版)の仕様では、divでdtとddをグルーピングできる。

In order to annotate groups with microdata attributes, or other global attributes that apply to whole groups, or just for styling purposes, each group in a dl element can be wrapped in a div element. This does not change the semantics of the dl element.

HTML Standard - 4.4.9 The dl element

<dl>
  <div>
    <dt>名前</dt>
    <dd>浅田真央</dd>
  </div>
  <div>
    <dt>生年月日</dt>
    <dd>1990年9月25日</dd>
  </div>
  <div>
    <dt>出生地</dt>
    <dd>愛知県名古屋市</dd>
  </div>
</dl>
13
7
4

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
13
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?