ㅡ 이렇게 나오는 테이블을
ㅣ이렇게 통째로 화면을 돌리고 싶은데 방법이 없을 까요?
|
답변 3개
채택된 답변
+20 포인트
8년 전
그렇게 돌릴수는 없습니다. 그렇게 하시려면 테이블 구조를 다시 짜셔야 합니다.
8년 전
감사합니다
8년 전
<style>
#tbl {
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
</style>
<table id="tbl">
<tr>
<th>AA</th><th>BB</th>
</tr>
<tr>
<td>aa</td><td>bb</td>
</tr>
</table>
요렇게 돌리면 됩니다
답변을 작성하려면 로그인이 필요합니다.