๐ŸŸก CSS text-align

Dayยท2022๋…„ 4์›” 4์ผ
0
post-thumbnail
post-custom-banner

๐Ÿ“‹ text-align

๐Ÿ‘‰ ํ…์ŠคํŠธ ์ •๋ ฌ์€ ์™ผ์ชฝ์ •๋ ฌ, ๊ฐ€์šด๋ฐ์ •๋ ฌ, ์˜ค๋ฅธ์ชฝ ์ •๋ ฌ์ด ์žˆ๋‹ค.

๐Ÿงฎ property ์ด๋ฆ„์€ text-align์ด๊ณ  ๊ฐ’์€ left, center, right์ด๋‹ค.

.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}

๋ชจ๋“  ์š”์†Œ์˜ ๊ธฐ๋ณธ ์ •๋ ฌ์€ ์™ผ์ชฝ ์ •๋ ฌ์ด๋‹ค.

<span>์— ์˜ค๋ฅธ์ชฝ ์ •๋ ฌ์ด ๋˜๋„๋ก ํด๋ž˜์Šค๋ฅผ ๋ถ€์—ฌํ–ˆ์ง€๋งŒ, ์˜ค๋ฅธ์ชฝ ์ •๋ ฌ์ด ๋˜์ง€ ์•Š์•˜์Œ.
<span>์€ inline-element์ด๋ฏ€๋กœ, 
"span์˜ ์˜ค๋ฅธ์ชฝ ์ •๋ ฌ"์ด๋ผ๋Š” text๋งŒํผ ์˜์—ญ์„ ์ฐจ์ง€ํ•˜๊ณ  ์žˆ์–ด ์ •๋ ฌ์ด ๋˜์ง€ ์•Š๋Š”๋‹ค.

๐Ÿ—’indent(๋“ค์—ฌ์“ฐ๊ธฐ)

text-indent ์„ ์ด์šฉํ•˜์—ฌ css๋กœ ๋“ค์—ฌ์“ฐ๊ธฐ๋„ ํ•  ์ˆ˜ ์žˆ๋‹ค.

.js-description {
  text-indent: 50px;
}

(blockquote ์ด๋ž€ ํƒœ๊ทธ๋Š” ์ธ์šฉ๊ตฌ๋ฌธ์„ ๋„ฃ์„ ๋•Œ ์“ฐ๋Š” ํƒœ๊ทธ)
<blockquote class="js-description"> </blockquote>

๐Ÿงพ๊ณต๋ฐฑ(space) ๋„ฃ์„ ๋•Œ

์ŠคํŽ˜์ด์Šค ๋„ฃ๊ณ  ์‹ถ์œผ๋ฉด &nbsp;์“ด๋‹ค.
post-custom-banner

0๊ฐœ์˜ ๋Œ“๊ธ€