1
如何讓鏈接列表從上到下出現,而不是從左到右?我試過html間距( )等等。這不是專業,所以我來這裏問如何做到這一點。如何讓我的鏈接列表按從上到下的順序顯示,而不是從右到左?
<style>
body {
margin: 0;
font-family: "Yu Gothic", sans-serif;
transition: background-color .5s;
background-color: (0, 0, 0, 0.5);
background-image:url(image url here);
text-align: left;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #000000;
position: fixed;
top: 0;
width: 278px;
height: 100%;
}
li {
float: left;
}
li a {
display: block;
color: white;
padding: 16px;
text-decoration: none;
}
.main {
padding: 16px;
margin-top: 30px;
height: 1500px; /* Used in this example to enable scrolling */
}
</style>
</head>
<body>
<ul>
<li><a href="#main"><img src="image url here" width="240 height="128"></a></li>
<li><a href="#home">News</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
\t </body>
從你的'li'裏刪除'float:left' –
li {float:left;} 刪除這個 –
謝謝。問題解決了。 – NumaNuma