Study/PYTHON
[jupyter] 테이블 전체 왼쪽 정렬하는 방법
chanzae
2023. 2. 24. 22:07
"코드셀"에 아래 코드를 실행시키면 마크다운에서 테이블 전체가 왼쪽 정렬된다.
%%html
<style>
table {float:left}
</style>
오른쪽 정렬을 하고 싶을 경우 left 대신 right를 쓰면 된다.
reference
반응형