๐ซ ๊ธฐ๋ณธ์ ์ธ table HTML ๊ตฌ์ฑ
<table>
<thead></thead>
<tbody>
<tr>
<td>๋ด์ฉ</td>
<td>๋ด์ฉ</td>
</tr>
</tbody>
</table>
<tr>
: row<td>
: column<tbody>
,<thead>
: head ์์ญ ๊ตฌ๋ถ์ ์ํด ์ฌ์ฉ<th>
: ๊ธฐ๋ณธ์ ์ผ๋ก ์ ๋ชฉ์ฒ๋ผ ๊ตต๊ฒ ์ฒ๋ฆฌ
๐ซ ํ ์ด๋ธ ์ ๋ด์์ ์ํ ์ ๋ ฌํ ๋ vertical-align
td, th {
vertical-align : middle;
}
- table ๋ด์์ ์ธ๋ก ์ ๋ ฌ ํ ๋ top, bottom, middle ์ฌ์ฉ ๊ฐ๋ฅ
- inline/inline-block ์์ ๊ฐ์ ์ธ๋ก ์ ๋ ฌ ํ ๋ ์ฌ์ฉ
- top, middle, bottom ๋ง๊ณ ๋ super, sub, px ๋จ์๋ก ์ฌ์ฉ ๊ฐ๋ฅ (table ์์์ top, middle, bottom๋ง ์ฌ์ฉ ๊ฐ๋ฅ)
๐ซ display : table
.box {
display : table;
display : table-row;
display : table-cell;
}
๊ฐ๋ div๋ก ์ด๋ฃจ์ด์ง ์์๋ค์ ํ ์ด๋ธํ ์ํค๊ณ ์ถ์ ๋
- tableํ๊ทธ๋ก ๋ณํ๊ธธ ์ํ๋ ์์์ display : table
- tr๋ก ๋ณํ๊ธธ ์ํ๋ ์์์ display : table-row
- td๋ก ๋ณํ๊ธธ ์ํ๋ ์์์ display : table-cell
๐ซ ์ค๋์ ์์ : Cart ํ์ด์ง ๋ง๋ค๊ธฐ
See the Pen
Untitled by dozzs (@dozzs)
on CodePen.