好吧我真的新的所有這一切,因此在這裏開始我的TAFE 的CSS部分IM是如何在頁面上定位div?
我一直要求增加
- 名單
- 表10行和5列
- 背景圖片
- 和三個鏈接。
但我可以弄清楚如何將所有這些東西放置在不同的位置?
有幫助嗎? 這是我的一切,到目前爲止
這是可悲的
我知道
div {
/* Purple box */
height: 150px;
width: 30%;
border: 10px solid purple;
background-color: purple;
}
/* link colour change and dots */
a {
color: black;
}
ul.a {
list-style-type: circle;
}
/* This Part is making the underline come on and off the links*/
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
<center>
<h1> Welcome to Brakeys webpage </h1>
</center>
<div id=a>
<center>
<p>Check out these awesome bands!:</p>
</center>
<center>
<br><a href="http://violentsoho.com/">Violent Soho</a>
</br>
</center>
<center>
<br><a href="https://tiredlionband.bandcamp.com/">Tired Lion</a>
<br>
</center>
<center>
<br><a href="https://dunerats.bandcamp.com/">Dune Ratz</a>
<br>
</center>
</div>
<div id=b>
<ol>
Top 5 best bands
<li>Nirvana</li>
<li>Pearl Jam</li>
<li>Pink Floyd</li>
<li>Foo Fighters</li>
<li>Bob Dylan</li>
</ol>
</div>
看看CSS'position'屬性 –
如果你想在一行中顯示它們,然後使用float或display:inline-block; –
有不同的地方,一個在另一個之下,只是它們之間沒有差距。 –