LogoSEO Jing
  • All Posts
  • SEO Jing
  • okayJing
  • KD Team
  • CLAB Coreteam
  • Study

Contact Me

© 2026 SEOJing. All rights reserved.

프론트엔드 스터디 대면 6주차(1): HTML/CSS/JS 리마인드와 브라우저 렌더링

2026년 6월 28일·10분 읽기
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted

<strong>비대면 학습</strong>: JavaScript, React 문법과 기본 사용법을 익히는

시간

<strong>대면 스터디</strong>: 실무에서 왜 그런 기술이 필요해졌는지, 팀에서는

어떻게 협업하는지, AI 시대에 개발자가 어떤 판단을 해야 하는지 이야기하는 시간

Paragraph fallback
Paragraph component omitted

<strong>6주차(1)</strong>: HTML/CSS/JS 리마인드와 브라우저 렌더링 — 우리가 쓴

코드가 어떻게 화면이 되는가

<strong>6주차(2)</strong>: AI 시대의 개발 방식과 프론트엔드 개발자의 위치 —

개발자는 이제 무엇을 판단해야 하는가

<strong>7주차</strong>: 프론트엔드 프로젝트가 복잡해지는 이유 — 구조와 책임

분리

<strong>8주차</strong>: API와 통신 — 프론트엔드와 백엔드의 계약 <strong>9주차</strong>: Next.js 렌더링 진화와 웹 퍼포먼스, 그리고 스터디 최종

정리

Paragraph fallback
Paragraph component omitted

---

Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted

<strong>HTML/CSS/JS 역할 다시 정리하기</strong> — 구조, 스타일, 동작이 각각

무엇을 담당하는지

<strong>4~6주차 핵심 감각 회복하기</strong> — 레이아웃, 타입/변수,

객체/함수/스코프

<strong>브라우저 렌더링 파이프라인 이해하기</strong> — 코드가 실제 화면으로

바뀌는 과정

Paragraph fallback
Paragraph component omitted

---

Subtitle fallback
Subtitle component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
html
<header>사이트 상단</header>
<main>
  <section>
    <h1>스터디 모집</h1>
    <p>프론트엔드 기초부터 함께 공부합니다.</p>
    <button>신청하기</button>
  </section>
</main>
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted

<strong>static</strong>: 기본값. 문서 흐름대로 배치됩니다. <strong>relative</strong>: 원래 자기 위치를 기준으로 이동합니다. 원래 자리는

남습니다.

<strong>absolute</strong>: 가장 가까운 positioned 조상을 기준으로 배치되고,

문서 흐름에서 빠집니다.

<strong>fixed</strong>: 뷰포트 기준으로 고정됩니다. 스크롤해도 따라옵니다.

css
.card {
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
}
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
css
/* 한 줄/한 방향 정렬 */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 행과 열을 함께 다루는 레이아웃 */
.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
js
let value = 1;
value = "hello";
value = true;
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
js
console.log(a); // undefined
var a = 1;

console.log(b); // ReferenceError
let b = 1;
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
js
const user = { name: "Jin", age: 24 };
const sameUser = user;

sameUser.age = 25;
console.log(user.age); // 25
Paragraph fallback
Paragraph component omitted
js
function outer() {
  const name = "outer";

  function inner() {
    console.log(name);
  }

  inner();
}
Paragraph fallback
Paragraph component omitted

---

Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted
text
HTML → DOM
CSS → CSSOM
DOM + CSSOM → Render Tree
Render Tree → Layout(Reflow) → Paint → Composite
JavaScript → DOM/CSSOM 변경 → 필요한 단계 다시 실행
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
html
<body>
  <h1>Hello</h1>
  <button>Click</button>
</body>
text
Document
└─ body
   ├─ h1
   └─ button
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
css
button {
  background-color: black;
  color: white;
}

button:hover {
  background-color: #333;
}
Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
css
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}

<strong>display: none</strong>: Render Tree에서 빠집니다. 자리도 차지하지

않습니다.

<strong>visibility: hidden</strong>: 보이지만 않을 뿐, 레이아웃 자리는

남습니다.

Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted

width, height margin, padding top, left font-size DOM 요소 추가/삭제

Paragraph fallback
Paragraph component omitted
Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted

background-color color box-shadow border-color

Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
css
/* 비싼 애니메이션이 되기 쉬움: 위치 계산을 다시 해야 함 */
.bad-move {
  position: relative;
  left: 100px;
}

/* 더 선호되는 방식: 합성 단계에서 처리하기 쉬움 */
.good-move {
  transform: translateX(100px);
}
Paragraph fallback
Paragraph component omitted

---

Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
js
const button = document.querySelector("button");
const box = document.querySelector(".box");

button.addEventListener("click", () => {
  box.textContent = "변경됨";
  box.style.width = "300px";
});
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted

---

Subtitle fallback
Subtitle component omitted
Quiz1 / 3
Q.`display: none`과 `visibility: hidden`의 차이를 Render Tree 관점에서 설명해보세요.

---

Subtitle fallback
Subtitle component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted
Paragraph fallback
Paragraph component omitted

Post Q&A

오케이징에게 물어보기

프론트엔드 스터디 대면 6주차(1): HTML/CSS/JS 리마인드와 브라우저 렌더링 전체를 기준으로 질문과 피드백을 받아요.답을 본 뒤에는 이 내용을 댓글로 달아서 서징에게도 물어볼 수 있어요. 작성자가 직접 볼 수 있어요!

0/500

포스트 목록

/study/clab-26-1/in-person
파일 9개, 폴더 0개
프론트엔드 스터디 대면 0주차: 프론트엔드 개발자란? 그리고 우리가 배울 것들프론트엔드 스터디 대면 1주차: HTML 마크업과 폼, 그리고 CSS의 시작프론트엔드 스터디 대면 2주차: 폼(Form), CSS 선택자, 그리고 박스 모델프론트엔드 스터디 대면 3주차: 박스 모델 실전, Position과 Flexbox프론트엔드 스터디 대면 6주차(1): HTML/CSS/JS 리마인드와 브라우저 렌더링프론트엔드 스터디 대면 6주차(2): AI 시대의 개발 방식과 프론트엔드 개발자의 위치프론트엔드 스터디 대면 7주차: React 입문과 프로젝트 구조프론트엔드 스터디 대면 8주차: API와 통신 — 프론트엔드와 백엔드의 계약프론트엔드 스터디 대면 9주차: Next.js 렌더링 진화와 웹 퍼포먼스

같은 섹션의 대표 이미지

9 posts · latest first
Study26. 05. 25.

프론트엔드 스터디 대면 9주차: Next.js 렌더링 진화와 웹.

Next.js가 무엇이고 왜 필요한지 React와 비교해 이해한 뒤, CSR부터 SSR, SSG, ISR, PPR까지 렌더링 전략과 Web Vitals를 정리하며 스터디를 마무리합니다.

26. 05. 25.SEOJing
Study26. 05. 18.

프론트엔드 스터디 대면 8주차: API와 통신 — 프론트엔드와.

비동기와 async/await를 배운 뒤, 대면에서는 API를 단순 호출 방법이 아니라 프론트엔드와 백엔드 사이의 계약으로 바라봅니다. HTTP, REST, CORS, 프록시, API 클라이언트 구조, TanStack Query와 파일 배치까지 연결합니다.

26. 05. 18.SEOJing
Study26. 05. 11.

프론트엔드 스터디 대면 7주차: React 입문과 프로젝트 구조.

바닐라 JS의 한계에서 React가 등장한 이유까지, 컴포넌트와 렌더링 방식을 이해하고 프로젝트 구조 감각을 만들어가는 대면입니다.

26. 05. 11.SEOJing
Study26. 05. 04.

프론트엔드 스터디 대면 6주차(1): HTML/CSS/JS.

4~6주차 공백 이후 진행하는 첫 번째 대면입니다. HTML/CSS/JS 핵심을 가볍게 다시 연결하고, 브라우저가 코드를 실제 화면으로 바꾸는 과정을 통해 렌더링 파이프라인과 성능 감각을 잡습니다.

26. 05. 04.SEOJing
Study26. 05. 04.

프론트엔드 스터디 대면 6주차(2): AI 시대의 개발 방식과.

길어진 6주차 대면의 두 번째 차시입니다. AI 시대에 개발자가 실제로 어떻게 일하는지, 그리고 프론트엔드 개발자가 디자이너·백엔드·PM 사이에서 어떤 연결과 리딩 역할을 하는지 다룹니다.

26. 05. 04.SEOJing
Study26. 04. 10.

프론트엔드 스터디 대면 3주차: 박스 모델 실전,.

3주차 박스 모델과 스타일링 복습, 과제 풀이, 4주차 Position과 Flexbox 레이아웃까지 다룬 대면 스터디 정리입니다. 면접에서 자주 나오는 마진 겹침, box-sizing, Flexbox 관련 질문도 함께 준비합니다.

26. 04. 10.SEOJing
Study26. 04. 03.

프론트엔드 스터디 대면 2주차: 폼(Form), CSS.

2주차 폼과 CSS 선택자 복습, 과제 풀이, 3주차 박스 모델과 스타일링까지 다룬 대면 스터디 정리입니다. 면접에서 자주 나오는 GET vs POST, CSS 우선순위, 박스 모델 관련 질문도 함께 준비합니다.

26. 04. 03.SEOJing
Study26. 03. 27.

프론트엔드 스터디 대면 1주차: HTML 마크업과 폼, 그리고.

1주차 HTML 핵심 복습과 과제 풀이, 2주차 폼(Form)과 CSS 선택자까지 다룬 대면 스터디 정리입니다. 면접에서 자주 나오는 시맨틱 HTML, img alt 속성 관련 질문도 함께 준비합니다.

26. 03. 27.SEOJing
Study26. 03. 20.

프론트엔드 스터디 대면 0주차: 프론트엔드 개발자란? 그리고.

프론트엔드 개발자가 실무에서 하는 일, 2025-2026 기술 스택, 현실적인 연봉과 채용 트렌드를 정리했습니다. 스터디 자료 구조와 앞으로의 방향도 함께 안내합니다.

26. 03. 20.SEOJing