728x90
320x100
Alt+Enter 구현하기
엑셀로 다운로드 만들려고 하려는데...
alt+enter 구현하기가 쉽지 않다.
\n은 안먹고,
<br>을 하니까 row가 한줄이 더 생긴다면
<br> 대신
<br style="mso-data-placement:same-cell;">
이것을 사용하여 처리할 수 있다.
<tr>
<td>
${row.학년} / \n ${row.이름}
</td>
</tr>
<tr>
<td>
${row.학년} /<br> ${row.이름}
</td>
</tr>
<tr>
<td>
${row.학년} /<br style="mso-data-placement:same-cell;"> ${row.이름}
</td>
</tr>
728x90
반응형
'잡다한 IT' 카테고리의 다른 글
Java 형변환, String to int, int to String (0) | 2024.03.19 |
---|---|
Input 태그 폼에서 엔터키를 눌러도 자동 Submit 안되게 하려면 (0) | 2024.02.02 |
The user specified as a definer ('root'@'%') does not exist 오류 해결하기 (0) | 2023.12.13 |
엑셀 가로 세로 바꾸기 (0) | 2023.11.20 |
[LINUX] SVN 계정 정보 확인 (0) | 2023.11.02 |