overflow:hidden ๐ display:none
๋ ํ๊ทธ ๋ค ์ฌ์ฉํด๋ณธ์ ์ด ์๋๋ฐ ์์๋ค์ ๋ณด์ด์ง ์๊ธฐ ์ํด ์ฌ์ฉํ์ง๋ง ๊ทธ ์ฐจ์ด์ ๋ํด ๊น๊ฒ ์์๋ณธ์ ์ด ์์ด ์ด๋ฒ์ ์์๋ณด๊ณ ์ ํ๋ค.
<!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></title>
<style>
p{
margin: 0;
}
section {
width: 150px;
height: 150px;
background-color: #EEA47F;
margin: 50px;
}
p {
font-size: 18px;
color: #00539C;
}
</style>
</head>
<body>
<section class="sec1">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem eligendi ipsam unde minus quae quod maiores quas
in enim quos animi totam provident quisquam doloremque, sunt sed, vitae amet consequatur!</p>
</section>
</body>
</html>
์ด๋ ๊ฒ ์์ญ๊ณผ ์ฝํ ์ธ ๊ฐ ์์๋ ์์ญ ๋ฐ๊นฅ์ผ๋ก ๊ธ์๊ฐ ๋์จ๊ฒ์ ํ์ธํ ์ ์๋ค.
overflow
์ ํด์ง ๋ธ๋ก๋ณด๋ค ๊ทธ ์์ ์ฝํ ์ธ ๊ฐ ๋ ํด ๋ ์ง์ ํ๋ ์ฒ๋ฆฌ๋ฒ์ด๋ค.
์ ์ฉ ๊ฐ๋ฅํ ๋ฐฉ๋ฒ์ visible, hidden, scroll, auto๊ฐ ์๋ค.
overflow ์์ฑ์ด ํจ๋ ฅ์ ๊ฐ๊ธฐ ์ํด์ ๋ฐ๋์ ๋ธ๋ก ๋ ๋ฒจ ์ปจํ ์ด๋์ ๋์ด(height ๋๋ max-height)๋ฅผ ์ค์ ํ๊ฑฐ๋, white-space๋ฅผ nowrap์ผ๋ก ์ค์ ํด์ผํ๋ค.
์์ญ ๋ฐ๊นฅ์ผ๋ก ๊ธ์๊ฐ ๋ ์์ง๋ง ์คํฌ๋กค๋ฐ๋ฅผ ๋ง๋ค์ด ์ฃผ์ง์๊ณ ์์ญ๋งํผ๋ง ๋ณด์ฌ์ค๋ค.
display
display ์์ฑ์ ๋ฐ์ค์ ์ฑ์ง์ ์ง์ ํ์ฌ ๋ค๋ฅธ ๋ฐ์ค๋ค๊ณผ ์ด๋ค ๋ฐฉ์์ผ๋ก ์์น๊ฐ ๋ฐฐ์น ๋ ์ง ๊ฒฐ์ ํ๋ค.
ํฌ๊ฒ ์ธ๋ถ์ ๋ค๋ฅธ ํ์ , ๋ถ๋ชจ ๋ฐ์ค๋ค๊ณผ์ ๋ฐฐ์น์ ์ํฅ์ ๋ฏธ์น๋ ์ธ๋ถ ๋์คํ๋ ์ด ํ์ ๊ณผ, ๋ด๋ถ ์์ ๋ฐ์ค๋ค์ ๋ฐฐ์น์ ์ํฅ์ ๋ฏธ์น๋ ๋ด๋ถ ๋์คํ๋ ์ด ํ์ ์ผ๋ก ํฌ๊ฒ ๋๋ ์ ์๋ค.
์ด๋ ๊ฒ ๋์ผํ ์์ ๋ ๊ฐ๊ฐ ์์ ๋ ์ผ์ชฝ์๋ง display: none;์ ์ฃผ์์ ๋์ ๋ณํ๋ ์๋์ ๊ฐ๋ค.
display:none;์ ์ค ์์ญ์ด ์์ ์ฌ๋ผ์ง๊ณ ์ค๋ฅธ์ชฝ์ ์๋ ์์ญ์ด ์ผ์ชฝ์ผ๋ก ๋ฐ๋ฆฐ๊ฒ์ ํ์ธํ ์ ์๋ค.
overflow: hidden;๊ณผ display: none;์ ์ฐจ์ด์
overflow: hidden;์ ๋ ์ด์์์ ์ํฅ์ ์ฃผ์ง ์๊ณ ์์ญ๋ด์ ์ฝํ ์ธ ๋ง ๋ณด์ฌ์ค๋ค.
display: none; ํด๋น ์์ฑ์ ์ ์ฉํ ๋ธ๋ก์ ์จ๊ฒจ ์ ํ์๋ ๊ฒ์ฒ๋ผ ๋ณด์ฌ์ง๋ค.
'TIL' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
TIL 11 :: fixed vs sticky (0) | 2022.04.11 |
---|---|
TIL 10 :: Notion์ผ๋ก ์ด๋ ฅ์ ๋ง๋ค์ด๋ณด๊ธฐ (0) | 2022.04.08 |
TIL :: block vs inline vs inline-block์ ์ฐจ์ด์ ์ ๋ํด 1๋ถ์์ ๋งํ์์ค. (0) | 2022.04.05 |
6์ผ์ฐจ :: section? article? div? (0) | 2022.04.04 |
5์ผ์ฐจ :: CSS (0) | 2022.04.01 |