我正在尝试创建一个论坛并拥有以下代码,该代码可以正常工作,但是这里仅存在一些问题...
我尝试添加一个border-radius: 5px
,据我所知,应该在所有角落创建5px的边框;但是,当我尝试使用时,我的桌子看起来很奇怪,只有一个角落受到了影响。
此外,您如何在论坛内添加链接,但不使用下图所示的锚标记。
.categories {
background-color: #FAEBD7;
position: relative;
top: 90em;
border-radius: 5px;
}
.categories td {
text-align: center;
}
.categories th {
padding: 20px;
text-align: center;
background-color: #808080;
width: 33%;
}
<table class="categories">
<thead>
<tr>
<th> Category</th>
<td><?= htmlspecialchars($row['category']); ?></td>
</tr>
<tr>
<th>Sub Category</th>
<td><a href="display_music_forum_topics.php?cat=<?= htmlspecialchars($row['id']); ?>&admin=<?= htmlspecialchars($row['admin']); ?>&topic_id=<?= htmlspecialchars($row2['id']); ?>"><?= htmlspecialchars($row2['sub_category']); ?></a></td>
</tr>
<tr>
<th>Creator</th>
<td><?= htmlspecialchars($row['user_uid']); ?></td>
</tr>
<tr>
<th>Date Created</th>
<td><?= htmlspecialchars($row['date_created']); ?></td>
</tr>
</thead>
<tbody>
...
</tbody>
</table>