how to table Row/Column merge
- Merge row cells code
/* Css */
<table>
<tr>
<td rowspan="3"> 3 Row Merge</td>
<td rowspan="2"> 2 Row Merge</td>
</tr>
</table
- Merge column cells code
/* Css */
<table>
<tr>
<td colspan="3"> 3 Column Merge </td>
<td colspan="2"> 2 Column Merge</td>
</tr>
</table
그누보드5 페이징번호 추가하는법 (0) | 2022.05.25 |
---|---|
php 그누보드 특정 글쓴이만 검색하고싶을때, 변수를 쿼리문에 추가하기 (0) | 2022.05.25 |
wr_datetime의 유효하지 못한 디폴트 값을 사용하셨습니다. (57) | 2022.05.11 |
css transform 여러개 정의하기 , CSS transform multi property (0) | 2018.11.29 |
CSS Text Shadow, CSS 우선처리 키워드 !important , CSS mouse hover effect (0) | 2018.11.26 |
css select 버튼 숨기기 & div 에 이미지 넣기. (0) | 2018.11.23 |