我真的觉得问这个问题应该是愚蠢的,并且是使用 CSS 样式链接的一个非常基本的知识。而且,今天,我一整天都在尝试为链接设置样式,但没有成功,样式表不想将想要的外观应用到我的链接上。这是样式表公共 A:
A:link {text-decoration: none; color: white;}
A:visited {text-decoration: none; color: white;}
A:active {text-decoration: none; color: white;}
A:hover {text-decoration: underline; color: red;}
这是我试图让它工作的代码块(它在一个查询数据库的while循环中)
$query=$db->prepare("SELECT post_id, title, body, category FROM posts INNER JOIN categories ON categories.category_id=posts.category_id ORDER BY post_id DESC");
$query->execute();
$query->bind_result($post_id, $title, $body, $category);
while($query->fetch()):?>
<?php $lastspace = strrpos($body, ' ');?>
<article>
<h2><?php echo $title?></h2>
<?php echo $category;?>
<?php echo "<hr>";?>
<p><?php echo nl2br (substr($body,0,$lastspace)). "<a href='post.php?id=$post_id'>Read More</a>"?></p>
<?php echo "<hr>"?>
</article>
<?php endwhile ?>
好的,就是这样。我做错了什么/如何解决这个问题?