FE/CSS

[ CSS ] 줄바꿈 (개행문자) 표시 방법

HEON.D 2021. 1. 19. 15:00

방법

You can use CSS white-space property for \n. You can also preserve the tabs as in \t.

 

For line break \n:

white-space: pre-line;

 

For line break \n and tabs \t:

white-space: pre-wrap;

 

링크

stackoverflow.com/questions/39325414/line-break-in-html-with-n/45178556

 

'FE > CSS' 카테고리의 다른 글

[ SCSS ] @if, @for 조건문, 반복문  (0) 2021.03.09
[ CSS ] 텍스트 드래그 방지  (0) 2021.02.25
[ CSS ] 브라우저 스크롤바 제거  (0) 2021.02.03
[ CSS ] 너비에 패딩값 포함  (0) 2021.01.25
[ CSS ] Placeholder  (0) 2021.01.22