“ 지연되는 프로젝트에 인력을 더 투입하면 오히려 더 늦어진다. ”
- Frederick Philips Brooks
Mythical Man-Month 저자
728x90
반응형
오늘은 사이트 만들기에서
텍스트 이미지 유형 만들기를 해본걸 정리해보려고 합니다.
피그마로 먼저 디자인 작업 후
코딩으로 작업해줍니다.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css" rel="stylesheet">
<style>
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
img {
vertical-align: top;
width: 100%;
}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
/* common */
.container {
width: 1160px;
margin: 0 auto;
padding: 0 20px;
margin-top: 160px;
/* background-color: rgba(0, 0, 0, 0.1); */
}
.nexon {
font-family: 'NexonLv1Gothic';
font-weight: 400;
}
.section {
padding: 120px 0;
}
.section__small {
font-size: 14px;
border-radius: 50px;
background-color: #FF4191;
color: #fff;
padding: 1px 23px;
text-transform: uppercase;
margin-bottom: 20px;
display: inline-block;
}
.section__h2 {
font-size: 50px;
font-weight: 400;
margin-bottom: 30px;
line-height: 1;
}
.section__desc {
font-size: 22px;
color: #666;
margin-bottom: 70px;
font-weight: 300;
line-height: 1.5;
}
전에 작업해뒀던 기본값을 불러와주고
밑에다 작업해줍니다.
<body>
<section class="imagetext__wrap sectr center nexon">
<div class="container">
<div class="imagetext__inner">
<article class="imagetext">
<div class="text__body">
<span class="section__small">notice</span>
<h2 class="title">요즘 인기있는<br>커피 종류</h2>
<p class="desc">카페인테리어는 카페 내부의 디자인과 인테리어를<br>의미합니다.</p>
<p class="desc_list">
<ul>
<li>에스프레소(Espresso)</li>
<li>라떼 마키아또 (Latte Macchiato)</li>
<li>롱 에스프레소 (Long Espresso)</li>
<li>더치커피 (Dutch coffee)</li>
<li>콜드브루 (Cold Brew)</li>
<li>드립커피 (Drip Coffee)</li>
<li>플랫화이트 (Flat White)</li>
<li>라떼 마키아또 (Latte Macchiato)</li>
<li>모카 (Mocha)</li>
<li>바닐라 라떼 (Vanilla Latte)</li>
<li>레몬 에스프레소 (Lemon Espresso)</li>
</ul>
</p>
</div>
</article>
<article class="imagetext">
<figure class="image">
<img src="../asset/img/img-textType01_01.jpg" alt="커피 종류">
</figure>
</article>
<article class="imagetext">
<figure class="image">
<img src="../asset/img/img-textType01_02.jpg" alt="커피 종류">
</figure>
</article>
</div>
</div>
</section>
</body>
</html>
우선 body 안에 화면에 들어갈 이미지와 텍스트를 넣어줍니다.
class로 각각의 이름을 지정해줍니다.
한 줄에 다 나타나야 하기 때문에
<div class="container">안에 한번에 다 넣어줍니다.
/* imagetext__type */
.imagetext__inner {
display: flex;
justify-content: space-between;
}
.imagetext__inner .imagetext {
width: 32.3333%;
}
.text__body .title {
font-size: 50px;
margin-bottom: 25px;
line-height: 1.2;
}
.text__body .desc {
font-size: 16px;
color: #666;
line-height: 1.5;
margin-bottom: 15px;
}
ul {
font-size: 16px;
color: #666;
padding-left: 20px;
line-height: 1.6;
margin-bottom: 20px;
}
body에서 지정해준 class 이름들을 지정해 하나씩 css를 설정해줍니다.
💜 justify-content: space-between
동일한 간격으로 배치.
첫번째 아이템은 컨테이너의 시적점에 위치, 마지막 아이템은 컨테이너의 끝점에 위치.
나머지 아이템들은 동일한 간격으로 분산.
이 코드에서는 이미지 두개를 동일하게 양쪽으로 분산
💜 display: flex
자식 요소들을 가로 또는 세로로 정렬하거나
간격을 조절, 아이템들을 더 나은 방식으로 배치할 수 있다.
반응형