[HTML&CSS] hover 연습문제 1개발자가 되기까지 (2023.08.16~2024.04.15)/[Basic] HTML & CSS2023. 11. 19. 20:41
Table of Contents
<Quest>
<조건> 1. menu 위에 hover 시, background color 변경 2. menu 위에 hover 시, cursor pointer로 설정 |
<Solve>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hover 연습문제1</title>
<style>
.container{
display: flex;
width: 100%;
height: 50px;
}
.menu{
width: calc(100%/4);
font-weight: 700;
text-align: center;
border: 1px solid black;
border-right: none; /*줄 겹치는거 없애려고*/
line-height: 45px;
}
.menu:last-child{
border-right: 1px solid black; /*마지막 부분만 다시 테두리 만들어줌*/
}
.menu:hover{
background-color: gold;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<div class="menu">menu1</div>
<div class="menu">menu2</div>
<div class="menu">menu3</div>
<div class="menu">menu4</div>
</div>
</body>
</html>
<Result>
[HTML&CSS] hover 연습문제 1
(다음 게시물 예고편)
[HTML&CSS] hover 연습문제 2
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!