我的网站有一个标题(见图)
基本上都是<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;
}