프런트엔드-CSS

CSS 스타일링

강사: 최퍼블리셔 · 작성자: 이종춘 · 작성일: 2026-03-30 16:57:16 · 조회수: 30

스타일시트 이미지 배치 작업
목록으로
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>

<style>

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

.con_wrap{
width: 1600px;
background-color: rgb(255, 168, 168);

}

.con_1{
width: 513.33333px;
background-color: lightblue;
float: left;

margin-right: 30px;
}
.con_2{
width: 513.33333px;
background-color: lightblue;
float: left;

margin-right: 30px;
}
.con_3{
width: 513.33333px;
background-color: lightblue;
float: left;

}

.img{
width: 100%;
height: 500px;
background-color: gray;
}

h3{
font-size: 28px;
}

.border-text{
width: 90px;
background-color: lightblue;
float: left;

}

</style>
</head>
<body>

<h2>Skill Categories</h2>
<div class="con_wrap">
<div class="con_1">
<img src="https://goyos.kr/img/category_design.png" alt="">
<h2>DESIGN</h2>
<div class="border-text">Figma</div>
<div class="border-text">UX UI</div>
<div class="border-text">Photo shop</div>
<div class="border-text">Illustrator</div>

</div>

<div class="con_2">
<img src="https://goyos.kr/img/category_pub.png" alt="">
<h2>PUBLISHING</h2>
<div class="border-text">Html</div>
<div class="border-text">Css</div>
<div class="border-text">JavaScript</div>
<div class="border-text">JQuery</div>
</div>

<div class="con_3">
<img src="https://goyos.kr/img/category_dev.png" alt="">
<h2>DEVELOPMENT</h2>
<div class="border-text">React</div>
<div class="border-text">Git</div>
<div class="border-text">Typescript</div>
</div>
</div>

</body>
</html>
#스타일시트 이미지 배치

첨부 파일

0개
첨부된 파일이 없습니다.

댓글 / 답글

0개
댓글을 작성하려면 로그인하세요.
아직 댓글이 없습니다.