gpt4 book ai didi

html - 右对齐表格列

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:05 25 4
gpt4 key购买 nike

我的网站有一个标题(见图片)buttons of the header

基本上是<td><a href>的风格与CSS。现在我的问题是,如果想在同一行中添加一个或多个按钮但将它们右对齐,我该怎么办?

它不一定是 css 解决方案,我正在寻找一种在 html 的 <table> 中执行此操作的方法或 <td>标签。

谢谢。

编辑:这是生成 header 的 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;

}

最佳答案

首先,您真的不应该将表格用于表格数据以外的任何内容。语义标记总是更好,因此在您的情况下,最好为菜单使用未编号的列表。

无论如何,假设这是你的 table :

<table>
<tr>
<th><a href="#">Item 1</a></th>
<th><a href="#">Item 2</a></th>
<th><a href="#">Item 3</a></th>
<th class="right"><a href="#">Item 4</a></th>
</tr>
</table>

然后您可以使用此 CSS 将一项右对齐:

table { width: 100%; }
th { float: left; }
th.right { float: right; }​

http://fiddle.jshell.net/6z97w/

关于html - 右对齐表格列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12446645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com