我有一个导航,它位于页面的右边距,基本上只是一系列使用“固定”属性滚动的锚链接。这在帖子的永久链接页面内工作正常,但仍出现在部分页面下,这些页面只是 /tagged/x 页面。
这是帖子 html 中的代码示例:
<div class="contents">
<p align="center"><strong>NAVIGATE</strong></p>
<a href="#intro">Introduction</a><br>
<a href="#jcole">J Cole</a><br>
<a href="#cudi">Kanye & Kid Cudi</a><br>
<a href="#joeyb">Joey Bada$$</a><br>
<a href="#mchg">Magna Carta Holy Grail</a><br>
<a href="#out1">Other News</a><br>
<a href="#out2">Other Highs</a> </div>
然后在主题代码中设置 div 的样式:
.contents{
position:fixed;
width: 220px;
top:300px;
right: 20px;
font-size: 16px;
color: white;
line-height: 20px;
text-align: right;
background: black;}
如何让 仅出现在永久链接页面上?
谢谢,杰克。