[CSS] 纯文本查看 复制代码* {
margin: 0;
padding: 0;
}
.w {
width: 1200px;
margin: auto;
}
li {
list-style: none;
}
button {
border: none;
}
body {
background-color: #f3f5f7;
}
.header {
width: 1200px;
height: 42px;
background-color: pink;
margin: 30px auto;
}
.logo {
float: left;
margin-right: 60px;
}
.nav {
float: left;
}
.nav ul li {
float: left;
}
.nav ul li a {
display: block;
height: 40px;
line-height: 40px;
padding: 0 10px;
margin-right: 20px;
font-size: 18px;
color: #050505;
text-decoration: none;
}
.nav ul li a:hover {
border-bottom: 2px solid #00a4ff;
}
.search {
float: left;
margin-left: 70px;
}
.search input text {
float: left;
width: 340px;
height: 40px;
padding-left: 20px;
border: 1px solid #00a4ff;
border-right: none;
color: #ccc;
}
/*.search input button {
float: left;
width: 50px;
height: 42px;
background-color: purple;
background: url(images/btn.png) repeat;
}*/