1. Description display: table, display: table-row, display: table-cell을 이용하여 테이블을 만든다. 2. Example (1) : 기본 테이블 다음은 가장 기본적인 2 x 2형태의 테이블이다(테이블의 border조차 보이지 않는다). ._1q74-ex-1 { } ._1q74-ex-1 .table { display: table; background: #022F04; width: 200px; height: 200px; } ._1q74-ex-1 .row { display: table-row; } ._1q74-ex-1 .cell { display: table-cell; background: #196F1D; }