가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Chapter 3

Colors, Backgrounds, Borders, Units, and Sizing Foundations

Build visual styling basics with color systems, size units, borders, backgrounds, and practical interface sizing decisions.

Inside this chapter

  1. Working with Color
  2. Background Styling
  3. Borders and Rounded Shapes
  4. Common CSS Units
  5. Width, Height, min and max Constraints
  6. Business Example

Series navigation

Study the chapters in order for the clearest path from CSS basics and styling foundations to advanced layout, responsive design, architecture, and maintainable interface systems. Use the navigation at the bottom to move smoothly through the full tutorial series.

Tutorial Home

Chapter 3

Working with Color

.button {
  background-color: #1f6feb;
  color: white;
}

CSS supports named colors, hex values, RGB, RGBA, HSL, and more. Students should learn color not only as decoration, but as part of hierarchy, state, contrast, and usability.

Chapter 3

Background Styling

.hero {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

Backgrounds can use solid colors, gradients, images, and layered effects. They shape atmosphere and readability, especially on modern responsive pages.

Chapter 3

Borders and Rounded Shapes

.card {
  border: 1px solid #d0dbe7;
  border-radius: 16px;
}

Borders help define boundaries, group elements, and communicate component structure. Border radius can soften or sharpen the overall visual tone.

Chapter 3

Common CSS Units

  • px for fixed pixel-based sizing
  • % for relative sizing based on parent context
  • em and rem for scalable typography and spacing
  • vw and vh for viewport-relative measurements
Chapter 3

Width, Height, min and max Constraints

Strong layout design often relies on min-width, max-width, min-height, and related constraints so content remains readable and stable across screens.

Chapter 3

Business Example

A pricing card may need a clear border, strong contrast, consistent width, and background treatment that separates it from surrounding content. Small CSS decisions here strongly affect user perception and conversion behavior.

Copyright © 2026, WithoutBook.