๊ฐ์ ํด๋์ค



/* ๋ง์ฐ์ค ํด๋ฆญ์ ๋ฐ์ */
input:focus {
background-color: beige;
}
/* ๋ง์ฐ์ค ์ปค์๊ฐ ๋ฟ์ผ์ ๋ฐ์*/
label:hover {
background-color: hotpink;
}
/* ํด๋ฆญํ์ฌ ํ์ด์ง ์ด๋์ ๋ฐ์*/
#intro:target {
background-color:#0069e0; /* ๋ฐฐ๊ฒฝ์ - ํ๋์ */
color:#fff; /* ๊ธ์์ - ํฐ์ */
}
/* ๊ฐ์ ๋ณ๊ฒฝํ์ง ๋ชปํจ*/
<input id="tel" name="tel" type="tel" value="010-2131-1231" disabled>
/* container์ ์์์ผ๋ก ์ฒ์๋์จ ์์ฑ */
.container :nth-child(1){
background-color: burlywood;
}
/* container์ ์์์ผ๋ก ์ฒ์๋์จ p */
.container p:nth-child(1){
background-color: burlywood;
}
/* container์ type์ผ๋ก ์ฒ์๋์จ p */
.container p:nth-of-type(1){
background-color: red;
}
๊ฐ์ ์์

๋ฐ์ํ ์น


๋ฏธ๋์ด ์ฟผ๋ฆฌ




๋ฐ์ํ