본문 바로가기

웹디자인/css,html

table태그 사용하지 않고 표 만들기

table태그 사용하지 않고 표 만들기

 

<style>

#table{ display: table;}
.row{display: table-row;}
p{display: table-cell; border:solid 1px gray; padding: 3px; }

</style>

 

 

 

 

 

<div id="table">
<div class="row">
  <p>col A</p>
  <p>col B</p>
  <p>col C</p>
</div>
<div class="row">
  <p>apple </p>
  <p>banana </p>
  <p>cancel </p>
</div>
<div class="row">
  <p>analysis </p>
  <p>believe </p>
  <p>cry </p>
</div>
</div>

저도 시간 엄청 투자해서 찾은 거이니 만큼 유용하게 잘 사용 하세요.^__^

 

가실때 공감 잊지 마시구용.. 꾹~욱  한 번 눌러주시고 가세요~m(_ _)m

 


상단으로 이동