<style rel="stylesheet" type="text/css">
table.tableList { table-layout:fixed; width:100%; border-top:2px #EA0000 solid; border-bottom:1px #CFCFCF solid; }
table.tableList tr.even { background:#FFFFEA }
table.tableList tr.over { background:#E3F2FF } /* even 보다 over 가 나중에 정의되기 때문에 두개가 섞이는 경우 over 가 최종 적용됨 */
table.tableList th, table.tableList td { padding:7px 3px 3px 3px; text-align:center; font-size:9pt; }
table.tableList th { border-right:1px #F3D7D7 solid; border-bottom:1px #CFCFCF solid; color:#E04C4C; background:#FCEFEF; }
table.tableList th.end, table.tableList td.end { border-right:none }
table.tableList td { border-right:1px #F0F0F0 solid; border-bottom:1px #CFCFCF dotted; vertical-align:center; }
table.tableList td.dot { text-overflow:ellipsis; overflow:hidden; white-space:nowrap; }
table.tableList td.left { text-align:left; }
table.tableList td.right { text-align:right; }
table.tableList td img { vertical-align:middle; }
</style>
<table class="tableList">
<col width="45"><col width="58"><col width="50"><col width="321"><col width="60"><col width="90">
<tr>
<th>칼럼1</th>
<th>칼럼2</th>
<th>칼럼3</th>
<th>칼럼4</th>
<th>칼럼5</th>
<th class="end">칼럼6</th>
</tr>
<tr>
<td>값1</td>
<td>값2</td>
<td>값3</td>
<td class="left dot"><nobr><a>값4</a></nobr></td>
<td>값5</td>
<td class="end">값6</td>
</tr>
<tr class="end">
<td>값1</td>
<td>값2</td>
<td>값3</td>
<td class="left dot"><nobr><a>값4</a></nobr></td>
<td>값5</td>
<td class="end">값6</td>
</tr>
</table>
'JQUERY' 카테고리의 다른 글
.is() 와 .next() 에 대해 (0) | 2014.04.04 |
---|---|
JQUERY 참조 블로그 (0) | 2014.04.04 |
jQuery API 정복 - event.target, 이벤트가 발생한 요소 (0) | 2014.04.04 |
jQuery event target (0) | 2014.04.04 |
jquery .hover (마우스오버와 마우스아웃) (0) | 2014.03.18 |
[jQuery 강좌] 10강 클래스 추가 및 삭제하기 addClass() removeClass() (0) | 2014.03.18 |
removeClass() 메서드, toggleClass() 메서드, hasClass() 메서드 (0) | 2014.03.18 |
EL, JSTL 이것저것 (0) | 2014.02.19 |