0

这就是我的 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 之后的第 2 页上都没有显示 CSS <!--nextpage-->。我必须做些什么来确保 css 在<!--nextpage-->属性之前和之后显示。

4

1 回答 1

1

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

例如:

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

没关系,同时:

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

不行。我希望是这样,如果不是,请不要投票并用完整的代码更新你的问题。然后我会尝试更新我的答案。


再说几句。当您单击下一页时,段落元素已在之前的页面上开始。所以在实际页面上没有段落开头,而只有:asdasdasd</p>导致问题,并且不是有效的 html。

此致。

于 2015-01-18T19:30:18.450 回答