https://ninefloor.github.io/web-practice/work/12/
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
</head>
<body>
<header id="header">
<a href="#"><img src="./images/search.gif" alt="search"></a>
<img src="./images/logo.jpg" alt="logo">
<ul>
<li><a href="#">로그인</a></li>
<li><img src="./images/bar.png" alt="bar"></li>
<li><a href="#">회원가입</a></li>
</ul>
</header>
</body>
</html>
/* 예제용 기본 속성 시작 */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: gray;
font-size: 15px;
font-weight: bold;
}
ul {
list-style-type: none;
}
/* 예제용 기본 속성 끝 */
#header{
width: 100%;
height: 150px;
border-bottom: gray solid 1px;
position: relative;
}
#header>a>img:first-child{
position: absolute;
top: 55px;
left: 5%;
}
#header>img:nth-child(2){
display: block;
position: relative;
top: 45px;
margin: 0 auto;
}
#header ul{
position: absolute;
top: 60px;
left: 90%;
}
#header ul li{
float: left;
margin-right: 10px;
}
#header>ul>li>img{
width: 2px;
height: 10px;
}