我必須在學校爲計算機科學制作一個網站,並且在居中菜單欄時遇到問題。我希望它以菜單按鈕爲中心,但它會使我的圖標偏離中心。圍繞中心li元素居中一個內聯ul/li
如何將整個菜單置於中心li
元素周圍?
下面的代碼:
<!DOCTYPE html>
<html>
<head>
<title> Homepagina </title>
<link rel="stylesheet" type="text/css" href="main.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"> </script>
</head>
<body>
<div class="menuBar">
<ul>
<li> <a href="#"> Over mij </a> </li>
<li> <a href="#"> Hobbies </a> </li>
<li> <a href="#"> <img src="logoNaam.jpg"> </a> </li>
<li> <a href="#"> Muziek </a> </li>
<li> <a href="#"> Waarom informatica </a> </li>
</ul>
</div>
<div class="jumbotron">
<div class="container">
hoi
</div>
</div>
</body>
</html>
body {
background-color: /*#C94421*/ #353535;
margin: 0; /* reset de standard marges van de body -> geen randen links en rechts naast .menuBar div */
text-align: center;
}
.menuBar {
height: 70px;
width: 100%;
}
.menuBar img {
text-align: center;
}
.menuBar ul li {
display: inline;
padding-right: 65px;
line-height: 70px;
}
.menuBar ul li a {
color: white;
text-decoration: none;
line-height: 70px;
font-family: 'Raleway', sans-serif;
font-size: 36px;
width: 100px;
}
.menuBar a:hover {
border-bottom: 1px solid white;
}
.jumbotron .container {
height: 550px;
width: 60%;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
border-top: 4.5px double white;
border-bottom: 4.5px double white;
}
@Rob如果我正確地閱讀了這個問題,我想他想讓其他'li'元素在頁面中居中的圖像周圍流動。 –
@MaximillianLaumeister是的確切 –
我仍然不確定你在問什麼......也許包括你想要的結果的一些圖像來解釋? –