18
16

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.

display: table-cell; には colspan, rowspan 的な指定ができない

Last updated at Posted at 2014-04-06

table-cell を指定した要素に display: table; の要素を入れ子にするしかないのか

<div class="table">
    <div class="tr">
        <div class="td">なにかkey</div>
        <div class="td">なにかvalue</div>
    </div>
    <div class="tr">
        <div class="td">
            なにかkey2
        </div>
        <div class="td">
            <div class="table--nested">
                <div class="tr">
                    <div class="td">なにかvalue2-1</div>
                </div>
                <div class="tr">
                    <div class="td">なにかvalue2-2</div>
                </div>
            </div>
        </div>
    </div>
</div>
.table {
    display: table;
    border-collapse: collapse;
}

.tr {
    display: table-row;
}

.td {
    display: table-cell;
    padding: 10px;
    border: 1px solid #666;
    vertical-align: middle;
}

.table--nested {
    display: table;    
}

.table--nested .td {
    padding: 0;
    border: none;
}

18
16
1

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
18
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?