我有我的網站的標題(見圖片)HTML - 對齊表格列權
它們基本上<td><a href>
「用CSS樣式秒。現在我的問題是如果要在同一行中添加一個或多個按鈕但將它們對齊到右側,我該怎麼辦?
它不一定是一個CSS解決方案,我正在尋找一種方法來做到這一點在HTML的<table>
或<td>
標籤。
謝謝。
編輯:這是生成的頭PHP的一部分:
echo<<<TOPBARHEREDOC2
<link rel="stylesheet" href="/css/horizontal_navbar.css" type="text/css" media="screen">
<table border="auto" id="topbar" >
<td><a class="topbarlink" href="index.php">Ana Sayfa</a></td>
<td><a class="topbarlink" href="userstats.php?category=$category">İstatistik</a></td>
<td><a class="topbarlink" href="contact.php">İletişim</a></td>
<td><a class="topbarlink" href="useful_links.php">Linkler</a></td>
<td><a class="topbarlink" href=$lastlink_address>$lastlink_name</a></td>
</table>
<hr>
<br>
TOPBARHEREDOC2;
,這是CSS:
table a.topbarlink{
/*TOP, RIGHT, BOTTOM, & LEFT*/
margin:0px 0px 0px 0px;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
font-weight:bold;
color:#069;
background-color: #f2f2f2;
text-decoration: none;
border-bottom: 2px solid #ccc;
border-top: 2px #ccc;
border-right: 2px solid #ccc;
border-left: 2px #ccc;
/*padding (ordered)*/
padding-top:0.2em;
padding-right: 1em;
padding-bottom:0.2em;
padding-left: 1em;
}
你能提供一些代碼,例如在jsfiddle.net? –
nope,簡單的html(用php生成)和css。將代碼添加到問題中。 – void