0
我的CSS股利的權利:定位使用相對
.topLogoContainer{
margin-top: 2%;
width: 100%;
height: 20%;
background-color: #660066;
border-radius: 10px;
}
.topLogoText{
width: 50%;
padding: 10px;
}
p.topButton{
text-align: center;
color: white;
}
我的HTML:
<div class="topLogoContainer">
<table>
<tr>
<td class="topLogoText">
<font size="18">TB's Jewelry</font>
</td><td>
<a href="buy.php" class="topButton">
<div class="topButton2">
<p class="topButton">buy</p>
</div>
</a>
</td>
</tr>
</table>
</div>
我有一個網站(姑且稱之爲 「TBAR」)的頂欄(你知道,其中的標誌和導航按鈕去),我想在左側的主文本,垂直居中在Tbar(當然,使它看起來不錯,給它一些邊距/填充),同時做2個按鈕(這是圓形彩色divs這是鏈接)在最底部,在Tbar的右側內部。我認爲我需要按鈕是相對的,所以它總是在Tbar內。嘗試「position:relative; right:10px; bottom:0px;」不會做我想要的 - 因爲它不會將它移動到Tbar的內部右側。
Javascript看起來很荒謬,但我沒有很好的練習它。
浮動:是嗎? jsfiddle的例子?順便說一句。我希望你不會認真對待導航欄使用TABLES – moped