더 나은 프로그래머가 되자

테이블 border,table 테두리 본문

레이아웃/HTML

테이블 border,table 테두리

greathuman 2015. 1. 12. 15:45

<style>
.calendar_table{border:1px solid #e7e7e7; border-collapse: collapse;}
.calendar_table .td1{width:36px;height:22px;text-align:center;border:1px solid #e7e7e7;}
</style>

<table cellpadding="0" cellspacing="0" class="calendar_table">
<tr>
  <td class="td1">border</td>
  <td class="td1">border</td>
  <td class="td1">border</td>
</tr>
</table>

Comments