2. CSS

CSS active 버튼 클릭 시 색깔 바뀌기

도피디 2024. 11. 30. 15:16
반응형

 

<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
height: 1000vh;
margin: 50px;
}
button:active {
background-color: tomato;
}
</style>
</head>
<body>
<div>
<button>Hello</button>
</div>
</body>
</html>

 

 

 

 

결과

 

버튼을 클릭하면 버튼이 빨간색으로 변한다.

반응형