gpt4 book ai didi

php - HTML - 表格内容对齐

转载 作者:行者123 更新时间:2023-11-28 13:33:01 26 4
gpt4 key购买 nike

我正在开发一款基于网络的游戏。我已进行导航,但文本未正确对齐。

HTML

 <table width="123" height="253" border="0" align="right" cellpadding="0" cellspacing="2" class="table">   <tr>
<td height="23" class="header">Main Game</td> </tr> <tr>
<td height="65" valign="top" class="cell" align="center"> <a href="home.php">Homepage</a> <a href="staff.php">Staff Page</a>
</td> </tr> <tr>
<td height="23" class="header">Social</td> </tr> <tr>
<td height="65" valign="top" class="cell"><a href="forum.php">Discussions</a></td> </tr> <tr>
<td height="23" class="header">LogOut</td> </tr> </table>

CSS

 .table { 
border:#000000 1px solid; background-color:#363636;
}

.cell {
color:#FFFFFF; padding:3px; background-color:#1C1C1C; align:center;
}

.header {
padding:0px; padding-left:2px; color:#FFFFFF;
background:#3A0D07; font-family:verdana; font-size:10px;
line-height:18px; text-align:left; border-bottom:2px solid;
border-color:#000000; align:center;
}

输出

enter image description here

最佳答案

对于您的代码, anchor 标记默认显示为inline-block

您的代码的快速修复是更改 a 标签的显示,将以下内容添加到您的 css:

.table .a{
display:block;
}

关于php - HTML - 表格内容对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13331921/

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