<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>CSS</title>
<style>
* {
font-family: Consolas, monospace;
font-size: 24px;
}
p:before {
content: "Hello World";
margin-right: 20px;
font-weight: bold;
color: cornflowerblue;
}
</style>
</head>
<body>
<p>Lorem ipsum dolor</p>
</body>
</html>
p 요소 앞에 Hello World를 추가한다.
https://www.codingfactory.net/10527
'웹 개발 강의 자료 (비공개) > css' 카테고리의 다른 글
사파리에서 폰트 CSS 안먹는 경우 (0) | 2023.08.22 |
---|