下面是我做的一个仿百度新闻导航栏的前端效果,代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
ul,li{
padding: 0;
margin: 0;
list-style: none;
}
.bar{
/*相对于自身定位*/
position:relative;
width: 700px;
height: 30px;
line-height: 30px;
background-color:#e62e00;
color:white;
font-size:15px;
font-weight: bolder;
}
.item{
position: relative;
display: block;
float:left;
text-align: center;
padding-left:5px;
padding-right:5px;
cursor: pointer;
}
.item-select{
background-color:#ff8533;
}
</style>
</head>
<body>
<ul id="bar" class="bar">
<li id="item-select" class="item-select" style="width:30px;height:30px;position: absolute;"></li>
<li class="i