基本上,我正在爲大學制作一個項目,而我需要左側的徽標,現在還沒有出現,右邊的nav
按鈕和最右邊的一些社交媒體圖標,我還沒有添加圖標,因爲我甚至無法正確地獲得這部分內容。我需要在右上角獲得我的徽標,並需要導航欄中的其他列表元素
我知道代碼搞砸了,但這是我第一次使用CSS和HTML,並且如果我想在nav
項之間插入項目符號,那有可能嗎?
Here是CodePen
head
<link rel="stylesheet" href="ab.css" type="text/css" />
<meta name="viewport" content="width=device-width, intial-scale=1.0">
<!-- Slider -->
<link rel="stylesheet" href="flexslider.css" type="text/css">
<link rel="stylesheet" href="ab.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="jquery.flexslider.js"></script>
<script type="text/javascript" charset="utf-8">
$(window).load(function() {
$('.flexslider').flexslider();
});
</script>
<body class="content">
<header>
<div class="navbuttons">
<div class="nav-main-wrapper">
<nav class="nav-main">
<ul>
<li><a class="logo" href="index.html"></a></li>
<li><a href="#">QUIET</a></li>
<li><a href="#">RAIN</a></li>
<li><a href="#">THOUGHTS</a></li>
<li><a href="#">CRAZY</a></li>
</ul>
</nav>
</div>
</div>
</header>
</div>
css
.navbuttons{
background:#0099cc;
position:relative;
padding: 30px 0px 33px 0px;
height: 60px;
margin-bottom: 10px;
}
header{
margin-top: 0px;
position: relative;
z-index:-1;
}
.branding img{
position: relative;
top: 0px auto;
float: left;
margin: 0px 0px 156px 0px;
}
.logo{
background: url("http://tinypic.com/r/30k62ae/5");
background-repeat:no-repeat;
height:140px;
display:block;
width:105px;
margin-top:-80px;
left: 30px;
margin-left: 30px;
padding: 0;
}
.nav-main-wrapper{
float:left;
min-width: 470px;
bottom: 300px:
margin: 22px 0px 22px 47px;
}
.nav-main{
float:left;
clear:both;
}
.nav-main ul{
float:left;
display:block;
font-size:22px;
}
.nav-main ul li{
display:inline;
color:#237dac;
font-family: LeagueGothic;
}
.nav-main ul li a{
color: #fff;
margin-left: 128px;
text-decoration: none;
}
.nav-main ul li a:hover{
color:#056495;
text-decoration: none;
}
.nav-main ul li:last-child:after{
content: "";
}
.nav-main ul li a {
white-space: nowrap;
text-decoration: none;
}
@font-face {
font-family: LeagueGothic;
src: url('LeagueGothic-Regular.otf');
}
你應該張貼您的代碼在這裏不只是鏈接到演示小提琴.. –
但是......哪裏是你的HTML代碼中的標誌?我只看到一個沒有任何東西的「a」元素。 – leoMestizo
@LeonardoManrique我將它作爲背景網址放在樣式表中。 :/但它沒有出現。 – CrazyRoach