Front-end/HTML
div로 테이블 코딩
mooyou
2021. 7. 3. 15:02
728x90
300x250
SMALL
div 코딩을 테이블처러 사용하는 방법입니다.
<style type="text/css">
#container {
display: table;
}
#row {
display: table-row;
}
#left, #right, #middle {
display: table-cell;
vertical-align: middle;
}
</style>
<div id="container">
<div id="row">
<div id="left">
<h4>Left Col</h4>
</div>
<div id="middle">
<h4>Middle Col</h4>
<p>...</p>
</div>
<div id="right">
<h4>Right Col</h4>
<p>...</p>
</div>
</div>
</div>
728x90
반응형
LIST