지원이 중단된 브라우저를 사용하고 있습니다.
브라우저 업그레이드를 통해 최적화된 화면을 볼 수 있습니다.

Home layout
Post
Cancel

layout

html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<body>

<div id="skipNavigation" class="skip-navigation">
    <a href="#content" class="skip-navigation__anchor">본문 바로가기</a>
</div>

<div class="l-wrap">
    <header class="l-head">
        header
    </header>

    <aside class="l-side">
        side
    </aside>

    <main class="l-content">
        <section id="content" class="page">
            content
        </section>

        <button type="button" class="o-button o-button--top">
            <span class="sr-only">본문 상단 이동</span>
        </button>
    </main>

    <footer class="l-foot">
        <small class="copyright">copyright</small>
    </footer>
</div>

</body>
This post is licensed under CC BY 4.0 by the author.