본문 바로가기
인터넷, IT 이야기/CSS 이야기

Content: "안에서 줄바꿈 처리"

by 아임슬로리. 2024. 2. 10.

CSS에서 Content를 사용할 때 줄 바꿈 처리가 필요했다.

줄 바꿈 처리는 간단하다.

h1:before {
    display: block;
    text-align: center;
    white-space: pre;
    content: "chapter\A hoofdstuk\A chapitre"
}

 

줄 바꿈 처리하는 곳에 \A 를 타이핑하고

White-Space를 추가해 준다.

 

결과는 아래와 같다.

 

chapter
hoofdstuk

chapitre