作者victer0327 (victory)
看板Web_Design
標題[問題] 關於用CSS做功能列
時間Wed Sep 30 15:25:44 2009
正在嘗試用CSS製作網頁上的功能列(SideBar)
因為是初心者,所以做得驚驚的,上來請教
我將div(id:A)中間夾一個table,然後在每個td中放一個div(class B)
不知這樣寫法是好的嗎??還是有更好的寫法,請告知
p.s. 現在還是搞不懂何謂該使用CSS的時機、何謂該使用table的時機???
-------------------------以下是程式--------------------------
#A {
height: 300px;
width: 300px;
position:fixed;
top:100px;
left:100px;
}
.B {
background-image: url(img/Basic_button.jpg);
height: 35px;
width: 124px;
}
<Body>
<div id="A">
<table width="124" border="1">
<tr>
<td class="B">AAA</td>
</tr>
<tr>
<td class="B">BBB</td>
</tr>
<tr>
<td class="B">CCC</td>
</tr>
</table>
</div>
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.111.166.142
推 jbluebox:讓它回歸標籤的語意吧 像功能表用ul來做比用table合適 09/30 19:38
→ jbluebox:建議用firefox安裝firebug套件多參考其他網站的寫法 09/30 19:39
→ victer0327:有點不太像耶,我想做的是Button 10/01 14:18