我真的觉得愚蠢地问这个问题,因为它应该是一个非常基本的知识来设置CSS的链接。 而且,今天,我一直试图设置一个链接整天没有成功,样式表不希望应用于我的链接所需的外观。 这是样式表public 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 ?>
好的,就是这样。我做错了什么/如何解决这个问题?
答案 0 :(得分:0)
清除缓存有效。我之前应该想到这一点。