<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GNB</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ol,
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
table {
border-collapse: collapse;
}
body {
font-family: "맑은 고딕";
font-size: 16px;
color: #000;
line-height: 1.5;
}
.gnb {
margin: 50px auto;
width: 1000px;
}
.gnb li {
width: calc(100% / 4);
float: left;
background-color: #ddd;
border-radius: 30px;
}
.gnb li a {
padding: 50px 0px;
display: block;
text-align: center;
border-right: 2px solid #fff;
}
.gnb li:nth-child(1) a:hover {
color: #fff;
border-radius: 30px;
background: linear-gradient(#73effe, #027fd2);
}
.gnb li:nth-child(2) a:hover {
color: #fff;
border-radius: 30px;
background: linear-gradient(#67feb6, #1aa8ad);
}
.gnb li:nth-child(3) a:hover {
color: #fff;
border-radius: 30px;
background: linear-gradient(#fef192, #f38281);
}
.gnb li:nth-child(4) a:hover {
color: #fff;
border-radius: 30px;
background: linear-gradient(#f8a3fe, #7d54da);
}
</style>
</head>
<body>
<ul class="gnb">
<li><a href="#">상단메뉴1</a></li>
<li><a href="#">상단메뉴2</a></li>
<li><a href="#">상단메뉴3</a></li>
<li><a href="#">상단메뉴4</a></li>
</ul>
</body>
</html>