這是我的代碼。在中心安排了很多塊(html)
<html>
<head><title>HOME||~All About EDM~</title>
</head>
<body >
<center><img src="edm1.jpg" alt="edm" width="950" height="250"></body></center>
<center>
<style type="text/css" >
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
position:relative;
left:18%;
float:left;
}
a:link,a:visited
{
display:block;
width:200px;
font-weight:bold;
color:#272525;
background-color:#DF01A5;
text-align:center;
padding:10px;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#272525;
font-weight:bold;
color:#DF01A5;
text-align:center;
}
</style>
</center>
<center>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="genres.html">Genres</a></li>
<li><a href="photos.html">Photos</a></li>
<li><a href="info.html">Info</a></li>
</center>
</body>
</html>
有5個塊(連續)應該被安排在它的中心,但我不知道該怎麼做。我嘗試了一些不同的方式,但它作爲一個柱子放在中心,而不是一排。
添加您的HTML以及。 – Morpheus
您是否知道您的HTML是無效的? – Morpheus