Menu
Coddy logo textTech

body 스타일 지정하기

Coddy의 DOM 프로젝트 - 계산기 코스 레슨 — 14개 중 4번째.

여기서는 body 태그를 스타일링하고 있습니다!

challenge icon

챌린지

쉬움
  1. displayflex로 설정하세요.
  2. justify-contentcenter로, align-itemscenter로 설정하세요.
  3. height100 vh로 설정하세요.
  4. 원하는 배경색(background color)을 추가하세요.
  5. 원하는 글꼴(font)을 선택하세요.

직접 해보기

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
    <body>
        <!-- Write HTML code here -->
        <script src="script.js"></script>
    </body>
</html>

DOM 프로젝트 - 계산기의 모든 레슨