LoginSignup
3
3

More than 5 years have passed since last update.

初級: tableタグの代用にcssとdl, dt, ddを使う書き方

Last updated at Posted at 2016-06-27

参考

サンプル

無題.png

index.html
<style>
dl {
    width: 20em;
    background-color: #ddd;
}
dt{
    float:left; /* <- ここが一番重要 */
}
dd{
    background-color: #fff;
}
</style>

<dl>
    <dt>項目1</dt>
    <dd>テステステスステステステステステステステステステステステステステステステス</dd>

    <dt>項目2</dt>
    <dd>テステス</dd>
    <dd>テステス</dd>
    <dd>テステス</dd>
    <dd>テステス</dd>
    <dd>テステス</dd>
</dl>

メリット

  • cssで見た目を一度作ってしまえば使いまわしやすいかも。
  • tableタグと比べてタグが少なく見える?

cssを使わない場合の表示

無題.png

3
3
11

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