ํ์คํ ์น๐ ๊ฐ๋ฐ์ ์ง๋ง์ ๐ง๐ฝโ๐ป
โ ์ธ๊ณต์ง๋ฅ ๊ด์ฌ ๐ค
Categories
-
โฃ
โถ COMPUTER_SCIENCE
๐: 7 -
โฃ
โถ WEB
๐: 3 -
โฃ
โถ ETC
๐: 3-
โ
โฃ
ETCS
๐: 10 -
โ
โฃ
SUBBRAIN ๊ฐ๋ฐ๊ธฐ
๐: 5 -
โ
โ
YOS ๊ฐ๋ฐ๊ธฐ
๐: 1
-
โ
โฃ
-
โ
โถ AI
๐: 9-
โฃ
AITOOLS
๐: 3 -
โฃ
CV
๐: 2 -
โฃ
DEEP_LEARNING
๐: 1 -
โฃ
DATA_VIS
๐: 2 -
โฃ
GRAPH
๐: 1 -
โฃ
LIGHTWEIGHT
๐: 1 -
โฃ
MATH
๐: 1 -
โฃ
NLP
๐: 3 -
โ
STRUCTURED_DATA
๐: 2
-
โฃ
CSS ๊ฐ๋
CSS
CSS์ ๊ฐ๋ ๊ณผ ๊ธฐ๋ณธ ์ฌ์ฉ๋ฒ
HTML => ์ ๋ณด์ ๊ตฌ์กฐํ
CSS => styling์ ์ ์
์ด ๋์ ๊ฐ์ ๋ฌธ๋ฒ์ด ๋ค๋ฅธ ๋ณ๊ฐ์ ์ธ์ด, ํ์ง๋ง HTML์ด ์์ผ๋ฉด CSS๋ ๋ฌด์๋ฏธ
h1 {
color:blue;
font-size:15px;
}
h1
: ์ ๋ ํฐ(selector),color:blue;
: ์ ์ธcolor
: ํ๋กํผํฐ(property),blue
: ๊ฐ(value)
- ์ธ๋ฏธ์ฝ๋ก (;)์ผ๋ก ๊ฐ๊ฐ์ ๊ฐ์ ๊ตฌ๋ถ
- CSS์ ์ฃผ์ ์ค์ ์
/* ๋ด์ฉ */
CSS ํ์ฉ
CSS ํ์ฉํ๊ธฐ 1. Inline(์ธ๋ผ์ธ)
<body>
<h1 style="color:red;">CSS intro</h1>
</body>
- html ํ๊ทธ ์์ ์ธ๋ผ์ธ์ผ๋ก CSS๋ฅผ ์ ์ฉํด๋ณธ ๊ฒ, ์ ์ง๋ณด์๊ฐ ํ๋๋ฏ๋ก ๊ธ์ง๋๋ค.
CSS ํ์ฉํ๊ธฐ 2. CSS ๋๋๊ธฐ
<head>
<style>
h2{ <!--๋ณดํต ์ฌ๋ฌ๊ฐ์ด ๋์ค๋ฏ๋ก CSS ์ฌ์ฉ์ ์ฌ๋ฌ์ค๋ก ๋๋-->
color: blue;
font-size:50px;
}
</style>
</head>
<body>
<h2>CSS is awesome</h2>
</body>
CSS ํ์ฉํ๊ธฐ 3.ํ์ผ ๋ถ๋ฆฌํ๊ธฐ
p{
color: green;
}
<head>
<link rel="stylesheet" href="00_intro css">
</head>
<body>
<p>Lorem ipsum dolor sit amet.</p>
</body>
</html>
lorem ipsum ๊ธฐ๋ฅ: ๋๋ค์ ์๋ฏธ์๋ ๋ฌธ์ฅ ๋ง๋ค์ด์ค
lorem{๋จ์ด์}
๊ฐ
๊ฐ : ํค์๋, ํฌ๊ธฐ ๋จ์, ์๊น ๋ฑ์ด ๋ค์ด๊ฐ ์ ์์
- ํค์๋ ์์ :
display: block
,visiblity: hidden
๋ฑโฆ
ํค์๋์ ๊ฒฝ์ฐ ๊ฐ๋ฐ์ ๋๊ตฌ๋ก ํ์ธ ๊ฐ๋ฅ
- ์ฃผํฉ์ ์์ญ : ์ค์ ๋ ํฌ๊ธฐ ์์ญ
- ํ๋์ ์์ญ : ์ค์ ๋ก ํด๋น ์์๊ฐ ์ฐจ์งํ๊ณ ์๋ ๋ถ๋ถ
/* CSS ์ฃผ์ #์ผ๋ก ์์ํ๋ ๊ฒ์ ์์ด๋์ด๋ค.*/
#hello {
font-size: 50px;
}
#welcome{
font-size: 50%; /* ๊ธฐ์กด์ ํฌ๊ธฐ ๋๋นํด์ ๋ฐ๊ฟ*/
}
#lunch{
font-size: 5em; /* ๊ธฐ๋ณธ์ค์ ์ x๋ฐฐ ์ปค์ง๊ฒ ํจ %์ ๋ง์ฐฌ๊ฐ์ง๋ก ๊ณฑ์
๋จ*/
}
/*div๋ ๋ถ๋ชจ*/
div{
width: 50%;
}
/*h1์ ์์, ๋ถ๋ชจ์ width๋ฅผ ์์๋ฐ์์ ๊ฒฐ๊ตญ์ 0.5 * 0.5 ์ ๊ฐ์ ๊ฐ๋๋ค.*/
h1{
width: 50%;
}
#snack {
font-size: 0.5rem;
}
#menu { /*ํ๋ฉด ํฌ๊ธฐ์ ์๋์ ์ผ๋ก ํฌ๊ธฐ๊ฐ ๋ฐ๋๋ ๋ฐ์ํ ๋จ์*/
background-color: red;
width: 50vw;
height: 50vh;
/*ํ๋กํผํฐ๊ฐ ์์ ์ฝ๋ก ์ ๋ถ์ด๊ณ ํ์นธ ๋์ฐ๋๊ฒ ๊ตญ๋ฃฐ*/
}
<link rel="stylesheet" href="01_css_val css">
</head>
<body>
<P id="hello">์๋ฝ</P><!--px ๋จ์-->
<P id="welcome">๋ฐ๊ฐ์ต๋๋ค</P> <!--% ๋จ์-->
<h1>
<P id="lunch">์ ์ฌ์๊ฐ์
๋๋ค.</P><!--em ๋จ์-->
</h1>
<h1>
<p id="snack">์ค๋ ๊ฐ์์ ๋์๋ฝ</p><!--rem ๋จ์-->
</h1>
<div>
<h1>๋ฐฐ๊ณ ํ </h1>
</div>
<h1 id="menu">์ค๋์ ๋ฉ๋ด</h1><!--viewport ๋จ์-->
</body>
px
- ํ ํฝ์ ์ RGB๋ก ์์ ๊ตฌ๋ถํ์ฌ ํํํ๋ฉฐ, ๋งค์ฐ ์์ ์ฌ๊ฐํ
- ๋๋ฐ์ด์ค๋ณ๋ก ํฝ์ ์ ํฌ๊ธฐ๋ ์ ๊ฐ๊ฐ, ๋๋ถ๋ถ ๋ธ๋ผ์ฐ์ ๋ 1px๋ฅผ 1/96์ธ์น๋ก ์ง์
%
๋ฐฑ๋ถ์จ ๋จ์์ ์๋ ๋จ์์ด๋ค.
์์์ ์ง์ ๋ ์ฌ์ด์ฆ(์์๋ ์ฌ์ด์ฆ๋ ๋ํดํธ ์ฌ์ด์ฆ)์ ์๋์ ์ธ ์ฌ์ด์ฆ๋ฅผ ์ค์ ํ๋ค.
๋ถ๋ชจ์ ์์, ์ฆ ๊ณฑ์
๋จ
em
em์ ๋ฐฐ์ ๋จ์๋ก ์๋ ๋จ์์ด๋ค. ์์์ ์ง์ ๋ ์ฌ์ด์ฆ์ ์๋์ ์ธ ์ฌ์ด์ฆ๋ฅผ ์ค์ ํ๋ค. %์ ๋ง์ฐฌ๊ฐ์ง๋ก ๊ณฑ์ , ์ฆ ์์๋จ
rem
em๊ณผ ๋น์ทํ๋ ์๋ ๋จ์๊ฐ ์๋, ์ ๋ ๋จ์, ์ฆ 2๋ฐฐ๋ก ์ค์ ํ๋ฉด ๋ค๋ฅธ ๊ฐ์ ๋ค ๊ณฑํด๋ 2๋ฐฐ๋ก ์ค์ ๋จ
- ๋ณดํต 1rem์ 16px
viewport ๋จ์
๋๋ฐ์ด์ค๋ง๋ค ๋ค๋ฅธ ํฌ๊ธฐ์ ํ๋ฉด์ ๊ฐ์ง๊ณ ์๊ธฐ ๋๋ฌธ์ ์๋์ ์ธ ๋จ์์ธ viewport๋ฅผ ๊ธฐ์ค์ผ๋ก ํํํ๋ ๋จ์, ์ธํฐ๋ท์ฐฝ์ด๋ ๋ชจ๋ํฐํฌ๊ธฐ๋ฅผ ๋ฐ๊พธ๋ฉด ๋์ ์ผ๋ก ๋ฐ๋๋ค. ๋ฐ์ํ ๋จ์
IE 8 ์ดํ๋ ์ง์ํ์ง ์์ผ๋ฉฐ IE 9~11, Edge๋ ์ง์์ด ์์ ํ์ง ์๋ค
์์ ํํ ๋จ์
HEX ํํ: 16์ง์์ ๋์๋ฆฌ์ฉ RGB ํํ \#24f4cd
, \#ffffff(ํฐ์)
RGB ํํ: ๋นจ๊ฐ, ์ด๋ก, ํ๋์ด ์์ด๋ ์ ๋๋ฅผ ํํ (0~255)
RGBA ํํ: RGB + ํฌ๋ช
๋ (alpha)
Box model
margin
: ๋ด์ฉ๊ณผ ๋ด์ฉ์ฌ์ด์ ์ฌ๋ฐฑ
border
: ํ
๋๋ฆฌ ์์ญ
padding
: ํ
๋๋ฆฌ ์์ชฝ์ ๋ด๋ถ ์ฌ๋ฐฑ, ์์์ ์ ์ฉ๋ ์์๋ค์ด ๋ด์ฉ๊ณผ ํจ๊ป ์ ์ฉ๋จ
contents
: ๋ด์ฉ, ์ญ์ ์คํ์ผ ์ ์ฉ๋จ
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="02_box css">
</head>
<body>
<div class="margin border"></div>
<div class="margin padding"></div>
<div class="margin border"></div>
<div class="margin"></div>
<div class="margin padding"></div>
<div class="margin-1"></div>
<div class="margin-2"></div>
<div class="margin-3"></div>
<div class="margin-4"></div>
</body>
</html>
div{
width: 100px;
height: 100px;
background-color: rgb(196, 61, 61);
}
.margin {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
}
.padding{
padding-top: 20px;
padding-bottom: 10px;
}
.border{
/* border-width: 2px;
border-color: blue;
border-style: dotted; */
border: 3px blue dotted; /*์์ ์ถ์ฝํ*/
}
.margin-1{
margin: 10px;
/* ์ํ ์ข์ฐ ์ ๋ถ ๋ง์ง 10 */
}
.margin-2{
margin: 10px 20px;
/* ์ ์๋ ๋ง์ง 10px, 20px */
}
.margin-3{
margin: 10px 20px 30px;
/*์ 10 ์์ 20 ์๋ 30px ๋ง์ง ์๊น*/
}
.margin-4{
margin: 10px 20px 30px 40px;
/* ์ ๋ง์ง ๋ถํฐ ์๊ณ๋ฐฉํฅ์ผ๋ก 10, 20, 30, 40 px ๋ง์ง ์๊น */
}
/*border, padding์๋ ์ ์ฉ๋จ*/
margin
-
id ์์ฑ
ํน์ id ์์ฑ์ ๊ฐ์ง ํ๊ทธ ํ๋์๋ง ์ ์ฉํ ๋ ์ฐ๋ ์์ฑ, CSS์์ ์์ #์ ๋ถ์ฌ ํํ - class ์์ฑ
๊ฐ์ ํด๋์ค ์์ฑ์ ํ๊ทธ๋ฅผ ์ ๋ถ ์ ์ฉํ ๋ ์ฐ๋ ์์ฑ, CSS์์ ์์ .(์ )์ ๋ถ์ฌ ํํ- ๊ฐ๊ธฐ ๋ค๋ฅธ class๋ฅผ ํ ํ๊ทธ์ ์คํ์ด์ค๋ฐ(๊ณต๋ฐฑ)์ผ๋ก ๋๋์ด ์ ์ฉํ ์ ์๋ค.
- ๋ง์ง ์์ํ์: ๋ค๋ฅธ ์กด์ฌ์ ๋ง์ง๊ณผ ์์๋จ
padding
border
shorthand
Display
display ํ๋กํผํฐ๋ฅผ ์ด์ฉํด block๊ณผ inline ๊ทธ๋ฆฌ๊ณ inline-block, none์ ์ ํด์ค ์ ์๋ค. ์๋ ๊ธฐ๋ณธ์ด block์ด์ฌ๋ inline์ผ๋ก ๋ฐ๊ฟ ์ ์์
div {
background-color: cornflowerblue;
margin-left: auto;
margin-right: auto;
}
.half {
width: 50%;
}
.b {
display: block;
}
.i {
display: inline;
}
.bi {
display: inline-block;
margin-top: 20px;
}
.bg {
background-image: url(https://picsum.photos/200/300);
}
.text {
font-family: 'Saira Stencil One', cursive;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="https://fonts.googleapis.com/css?family=Fira+Code|Saira+Stencil+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="03_display.css">
</head>
<body>
<div>
<h1>div๋ block์
๋๋ค.</h1>
</div>
<div class="half i">
<span>test</span> <!-- <h1>์ฌ๊ธฐ๋ ์ ๋ฐ๋ง!</h1> -->
</div>
<!-- <h1>์ฌ๊ธฐ๋ h1์
๋๋ค.</h1> -->
<div class="half i">
<span>test</span> <!-- <h1>์ฌ๊ธฐ๋ ์ ๋ฐ๋ง!</h1> -->
</div>
<span class="bi">์ฌ๊ธฐ๋ span</span>
<input class="b" type="text">
<input type="date">
<h1 class="bg">hello.</h1>
<h1 class="text">ooh yeah.</h1>
</body>
</html>
block
- ํญ์ ์๋ก์ด ๋ผ์ธ์์ ์์ํ๋ค.
- ๋๋น๊ฐ ์ ํด์ง๋ฉด ๋ง์ง์ผ๋ก ๋๋จธ์ง ์์ญ์ ์ฑ์(margin-right: auto;(๊ธฐ๋ณธ๊ฐ)) margin-left: auto; ๋ ๊ฐ์ด ํ๋ฉด ์ค์ ์ ๋ ฌ์ด ๋จ
- ํ๋ฉด ํฌ๊ธฐ ์ ์ฒด์ ๊ฐ๋กํญ์ ์ฐจ์งํ๋ค(width: 100%)
- block ๋ ๋ฒจ ์์ ๋ด์ inline
- block ๋ ๋ฒจ ์์์ ์
inline
- span, input ๋ฑ
- ์๋ก์ด ๋ผ์ธ์์ ์์ํ์ง ์์ผ๋ฉฐ ๋ฌธ์ฅ์ ์ค๊ฐ์ ๋ค์ด๊ฐ ์ ์๋ฐ.
- content์ ๋๋น๋งํผ ๊ฐ๋กํญ์ ์ฐจ์งํ๋ค.
- width, height, margin-top, margin-bottom ๊ฐ์ ํ๋กํผํฐ๋ฅผ ์ง์ ํ ์ ์๋ค.
- ์, ํ ์ฌ๋ฐฑ์ line-height๋ก ์ง์ ํ๋ค.
inline-block
- ๋ ์์๋ฅผ ๋ชจ๋ ๊ฐ์ง๊ณ ์๋ ์ฑ์ง, ๋ง์ง์ ์ค ์๋ ์์
- inline ๋ ๋ฒจ ์์์ฒ๋ผ ํ์ค์ ํ์๋๋ฉด์ ๋ง์ง ์์ฑ์ ๋ชจ๋ ์ ํด์ค ์ ์๋ค.
none
- ์ ์ฉํ๋ฉด ๋ณด์ด์ง์์, ๋์ ์ผ๋ก ์น์ ๋ง๋ค์ด ์ฌ๋ผ์ง๊ฒ ๋ง๋ค๊ณ ์ถ์๋ ์ (๊ณต๊ฐ์กฐ์ฐจ ์ฌ๋ผ์ง0)
visibility ์์ฑ
visible
- ๋ณด์ด๊ฒ ํ๋ค
hidden
- ์๋ณด์ด๊ฒ ํ๋ค, none๊ณผ ๋ฌ๋ฆฌ ์ฌ๋ผ์ง์ง ์๊ณ ๋ณด์ด์ง๋ง ์๋๋ค. ์์ญ์ ๊ทธ๋๋ก ์ฐจ์งํ๊ณ ์์
background-image ์์ฑ
- url(https://picsum.photos/200/300);์ ์ง์ ํ๋ฉด ๊ทธ ๊ณต๊ฐ๋งํผ์ ์ฌ์ง์ ๋ณด์ฌ์ค
font-size, font-family, letter-spacing, white space, text-align ๋ฑ์ด ์์
position ์์ฑ
- left: , right: , bottom, top ์์๋ก ์ผ๋ง๋ ๋จ์ด์ ธ์ผ ํ๋ ๊ฐ๋ฅผ ํฌ๊ธฐ๋ก ์ ํด์ค
- ์ฆ ์ผ๋ง๋ ๋จ์ด์ ธ์ผํ๋๊ฐ ex) left: 50px == ์ผ์ชฝ์ผ๋ก ๋ถํฐ 50px ๋จ์ด์ง
- ๋ง์ฝ left: 0px, right: 0px ์ฒ๋ผ ์๋ก ์ถฉ๋ํ๋ฉด ์ผ์ชฝ, ๊ทธ๋ฆฌ๊ณ ์์ชฝ์ด ์ฐ์ ๋จ
- ๊ฐ div์ ์ค์ฌ์ div๊ฐ ๊ทธ ํด๋น ๋ชจ์๋ฆฌ์์ ๊ฐ์ฅ ๊ฐ๊น์ด ์ชฝ์ผ๋ก ๊ฒฐ์ ๋๋๋ฏ?
- Ctrl + enter๋ก ์ฝ๋ ์ค๊ฐ์ ์ค๋ฐ๊ฟ ๊ฐ๋ฅ
div {
height: 100px;
width: 100px;
}
.blue {
background-color: blue;
position: static;
}
.red {
background-color: red;
position: relative;
left: 50px;
bottom: 50px;
}
.green {
background-color: green;
position: absolute;
left: 0px;
bottom: 0px;
}
.yellow {
background-color: yellow;
position: fixed;
right: 0px;
top: 0px;
}
.parent {
height: 200px;
width: 100%;
background-color: gray;
position: relative;
}
.children {
background-color: pink;
position: absolute;
left: 0px;
bottom: 0px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="04_position css">
</head>
<body>
<div class="blue"></div>
<div class="red"></div>
<div class="green"></div>
<div class="parent">
<div class="children"></div>
</div>
<div class="yellow">
</div>
</body>
</html>
static
- ์๋ฌด๊ฒ๋ ์์ ์ ๊ธฐ๋ณธ๊ฐ
- ์์์ง์, absolute์ ๋ถ๋ชจ๊ฐ ๋ ์ ์์
relative
- left: , right: , bottom, top ์์๋ก ์ ํ ํฌ๊ธฐ๋งํผ ์๋ ์์ด์ผํ๋ ์์น๋ฅผ ์ค์ฌ์ผ๋ก ์ฌ๋ฐฑ์ ์ค
- ์ ์ฒด ์์ญ (๋ง์ง, ๋ณด๋ ๋ฑ)์ด ์ ๋ถ ์์ง์, ์๋ ์์น์๋
absolute
- ๋ถ๋ชจ(body๊ฐ ๋ถ๋ชจ์ผ ๊ฒฝ์ฐ ํ๋ฉด์ ์ผ์ชฝ ์๋จ)๋ฅผ ์ค์ฌ์ผ๋ก left: , right: , bottom, top ์์ ํฌ๊ธฐ๋งํผ ์ฌ๋ฐฑ์ ์ค, ๊ทธ๋งํผ ๋จ์ด์ง
- ๋ถ๋ชจ๋ฅผ ์ค์ฌ์ผ๋ก ์ด๋ํจ,
- ๋ถ๋ชจ๋ position ์์ฑ์ด static์ด ์๋์ฌ์ผ ํจ, ๋ถ๋ชจ ๋ฐ๊นฅ์ผ๋ก ๋๊ฐ ์๋ ์์
fixed(๊ณ ์ ์์น)
- ๋ถ๋ชจ ์์ ๊ด๊ณ์์ด ๋ธ๋ผ์ฐ์ ๋ทฐํฌํธ(์ฐ์ธก ์๋จ)๋ฅผ ์ค์ฌ์ผ๋ก ์ด๋ํจ
- ์คํฌ๋กค์ ์์ง์ฌ๋ ๋ฐ๋ผ ์์ง์, ์๋จ ๋ฉ๋ด๋ฐ ๊ฐ์๊ฑฐ ๋ง๋ค ๋
_articles/web/frontend/CSS ๊ฐ๋ .md