whatisthis?
Project. ๋ฐ์ํ ํ์ด์ง - (7) Footer Section ๋ณธ๋ฌธ
(7) Footer Section
๐ HTML + CSS ์์ฑ
- html ๋งํฌ์ ๊ตฌ์ฑ
๋งค์ฐ ๊ฐ๋จ!
col-12 ์ง๋ฆฌ ์ธ๊ฐ๋ง๋ค๊ธฐ.
index.html
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-12">
<ul class="footer-links">
<li><a href="#" class="footer-link">Terms</a></li>
<li><a href="#" class="footer-link">Privacy</a></li>
<li><a href="#" class="footer-link">License</a></li>
</ul>
</div>
</div>
</div>
</footer>
style.css
/* Footer Page */
.footer {
padding: 24px 0;
}
.footer-link {
margin-bottom: 8px;
}
.footer-link:last-child {
margin-bottom: 0;
}
.footer-link a {
font-size: 14px;
line-height: 1.71428571;
letter-spacing: -0.01em;
color: #807f81;
}
+) media query (Desktop)
/* footer */
.footer-links {
display: flex;
align-items: center;
}
.footer-link {
margin-bottom: 0;
margin-right: 16px;
}
๋๋์ด ๋ชจ๋ ํ์ด์ง ์์ฑ.
๋ค์ ํฌ์คํ ์์ ์ฝ๋ ๋ฆฌ๋ทฐ + ๋ณต์ต ์งํํจ.
์๊ณ ํ์ด์ฉ ๐
๐ป Design File
๐ปReference Lecture
'PROJECT > WEB' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[project] For You ์ธํ ๋ฆฌ์ด ์ฌ๋ฌด ์ ๋ณด ๊ด๋ฆฌ ์ฌ์ดํธ ๊ธฐํ์ (0) | 2022.03.05 |
---|---|
Project. ๋ฐ์ํ ํ์ด์ง - Review + README.md (0) | 2022.03.03 |
Project. ๋ฐ์ํ ํ์ด์ง - (6) Subscription Section (0) | 2022.03.02 |
Project. ๋ฐ์ํ ํ์ด์ง - (5) Curriculum Section (0) | 2022.03.02 |
Project. ๋ฐ์ํ ํ์ด์ง - (4) Program Section โก (0) | 2022.03.02 |