这就是我的CSS在页面上的样子。

<!DOCTYPE html>
<html>


<head>
<style>
p.addresscenter {
    background-color: none;
color: #333;
font-family: Lato, sans-serif;
font-size: 15px;
font-weight: 400;
    font-style: normal;
line-height: 1.2;
margin: 0;
    text-align: center;
    white-space: pre;
}
p.endtagbold {
    background-color: none;
color: #000000;
font-family: Lato, sans-serif;
font-size: 16px;
font-weight: 600;
    font-style: normal;
line-height: 1.2;
margin: 0;
    padding-top:16px;
}
p.hoursofoperationcenter {
    background-color: none;
color: #333;
font-family: Lato, sans-serif;
font-size: 15px;
font-weight: 400;
    font-style: normal;
line-height: 1.3;
margin: 0;
    text-align: center;
    white-space: pre;
}
p.infop {
    background-color: none;
color: #OOOOOO;
font-family: Lato, sans-serif;
font-size: 16px;
font-weight: normal;
    font-style: normal;
line-height: 1.5;
margin: 0;
    padding-bottom:30px;
}
p.infostextbox {
    background-color: none;
color: #OOOOOO;
font-family: Lato, sans-serif;
font-size: 16px;
font-weight: 550;
    font-style: normal;
line-height: 1.5;
margin: 0;
    padding-bottom:16px;
}
p.topmenu {
    background-color: none;
font-family: Lato, sans-serif;
font-size: 15px;
font-weight: 500;
    font-style: normal;
line-height: 1.4;
margin: 0;
    text-align: center;

}
p.towncounty {
    background-color: none;
color: #000000;
font-family: Lato, sans-serif;
font-size: 16px;
font-weight: 700;
    font-style: italic;
line-height: 1.4;
margin: 0;
    padding-top:16px;
}


 </style>
   </head>
   <body>


<p class="topmenu">Text with id tags here.</p>


这些标签在此处有一组列

 <div class="one-half first">Text</div>
 <div class="one-half"> Text </div>


然后有更多的文本由<p class=""></p>表示,然后最终<!--nextpage-->属性出现在中间的某个位置。

<!--nextpage-->标记后,我还有更多的<p class=""></p>文本

整个页面以

</body>
    </html>


在其他未拆分的页面上,css显示正常。无论出于什么原因,css都不会在<!--nextpage-->之后显示在第2页上。我必须做些什么来确保CSS在<!--nextpage-->属性之前和之后显示。

最佳答案

我不确定我是否理解得很好,但是您应该尝试在标签之间放置<!--nextpage-->,而不是在标签内部。

例如:

<p>asdasd</p><!--nextpage--><p>asdasd</p>


还可以,而:

<p>asdasd<!--nextpage-->asdasdasd</p>


不好。希望是这种情况,如果没有,请不要投票并以完整代码更新您的问题。然后,我将尝试更新我的答案。



再说几句话。当您单击下一页时,则段落元素已从上一页开始。因此,在实际页面上没有段落开头,而只有:asdasdasd</p>会引起问题,并且不是有效的html。

最好的祝福。

10-07 12:36