我的導航欄不以內聯方式顯示。 當更改代碼:.nav li a {...}
到.nav li{...}
它是一致的,但所有css函數都從HTML中的class = nav中消失。 我試圖添加ul.nav{display: inline-block;}
,但它什麼也沒做。導航欄不顯示內嵌
我希望我解釋得很好,我試圖弄明白,因爲昨天...
html, body {
margin: 0;
padding: 0;
}
.container {
max-width: 940px;
margin: 0 auto;
padding: 5px;
}
.header {
background-color: #333;
}
.nav {
list-style-type: none;
margin: 0;
padding: 20px 0;
letter-spacing: 1.6px;
}
.nav li a {
display: inline;
text-decoration: none;
transition: 0.4s;
color: #fff;
font-family: 'Raleway', sans-serif;
font-weight: 600;
font-size: 12px;
margin-right: 25px;
text-transform: uppercase;
}
.nav li a:hover {
background-color: #ffffff;
color: #333;
font-weight: 900;
padding: 24px 10px;
font-size: 12px;
cursor: pointer;
}
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Raleway:400, 600" rel="stylesheet">
<link href="stylesheet.css" type="text/css" rel="stylesheet">
<script type='text/javascript' src='script.js'></script>
<script src="jquery-3.1.1.min.js"></script>
<title>Smart-Home</title>
</head>
<body>
<div class="header">
<div class="container">
<ul class="nav">
<li><a href ="indexKontakt.html"> O firmie </a></li>
<li><a href ="indexKontakt.html"> Produkty </a></li>
<li><a href ="indexKontakt.html"> Nasi partnerzy </a></li>
<li><a href ="indexKontakt.html"> Kontakt </a></li>
</ul>
</div>
</div>
或'顯示:inline-block的;'過了,我想你需要更正understoor爲*瞭解*;) –
@Hidayt拉赫曼定點謝謝:) – Shtut
謝謝你洙多!有用! 我只是想知道爲什麼當我將'display:inline-block;'添加到'.nav li a {}'或'.nav {}'時,它不起作用: – stackmack