javascript-tutorial / javascript-tutorial/ko.javascript.info
[Bug report] 로컬 서버 페이지 네비게이션 레이아웃 깨짐
Open
Nobody has claimed this yet.
enhancement
- Dominant language
- HTML
- Stars
- 2k
- Forks
- 852
- PR merge metrics
- No merged PRs in 30d
Description
🐛 Bug report

로컬 서버 실행 시 상세 페이지 네비게이션 레이아웃이 깨져서 오른쪽 페이지 네비게이션을 제대로 사용할 수 없습니다.
예상된 기능 혹은 화면

정상적인 페이지에서는 페이지 네비게이션이 콘텐츠의 양옆에 위치하고 있어야 합니다.
환경
[OS] 맥 m1, [브라우저] 크롬
재연할 수 있는 방법
/* 기존 코드 */
.page__nav_next {
left: 0;
transition: top .2s;
}
/* 수정 코드 */
.page__nav_next {
right: 0;
transition: top .2s;
}
요소의 클래스 .page__nav_next의 속성을 left에서 right로 변경해주면 배치가 수정되면서 페이지 네비게이션 버튼도 정상적으로 동작됩니다.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Search the stylesheets for the .page__nav_next selector and inspect the local detail-page navigation in Chrome. Confirm that the selector's positioning matches the expected layout and verify that the next-page control works correctly on the affected page.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- css
- Domain
- frontend, web-dev
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 52/100