본문 바로가기
html, css, javascript

html, css, content 문장 앞에 똑같은 문구 반복

by 타닥타닥 토다토닥 부부 2023. 2. 6.
반응형

문장 앞에 특적한 문구를 반복하고 싶으면 content 속성을 사용합니다.

모든 문장 앞에 Hello를 입력하고 싶다면 아래 코드와  같이 html / css 코드를 구성합니다.

<head>
    <style type="text/css">
        p:before {
            content: "hello";
        }
    </style>
</head>
<body>
    <p> Kim</p>
    <p> Brown</p>
    <p> Tom</p>    
</body>

 

위 코드 입력 결과는 아래와 같습니다.

See the Pen content_basic by hyunho (@momalcy) on CodePen.

 

 

반복되는 문구의 글자 색, 크기 등을 정할 수 있으며, 예시는 코드와 같습니다.

<head>
    <style type="text/css">
        p:before {
            content: "hello";
            color: blue;
            font-size: 25px;
        }
    </style>
</head>
<body>
    <p> Kim</p>
    <p> Brown</p>
    <p> Tom</p>    
</body>

 

위 코드 적용 결과는 아래와 같습니다.

See the Pen content_fontstyle by hyunho (@momalcy) on CodePen.

반응형

댓글