pseudo-class
<button class="btn"> ๊ตฌ๋งคํ๊ธฐ</button>
<input class="input-test">
<a href="#" class="link-test">๋งํฌ</a>
.btn {
padding: 15px;
font-size: 20px;
border: none;
border-radius: 10px;
background-color: coral;
color: white;
cursor: pointer;
}
.btn:hover { /*๋ง์ฐ์ค๋ฅผ ์ฌ๋ ค๋์ ๋*/
background-color: chocolate;
}
.btn:focus { /*ํด๋ฆญ ํ ๊ณ์ ํฌ์ปค์ค ์ํ์ผ ๋*/
background-color: grey;
}
.btn:active { /*ํด๋ฆญ ์ค์ผ ๋*/
background-color: darkblue;
border: 2px solid black;
}
.input-test{
font-size: 20px;
}
.input-test:focus{
border: 4px solid red;
}
.link-test {
text-decoration: none;
}
.link-test:link {
color: chocolate;
}
.link-test:visited {
color: black;
}Last updated