我目前正在针对 iphone 优化我的网站并尝试了解 safari 阅读器功能。
我认为对于像我这样的长文本网站来说,这是一个很棒的功能,但我想稍微设置一下它的样式。
有没有办法在阅读器中设置文本样式?我想做的就是添加一条分隔线来分隔文本部分。我尝试将 hr 标签添加到 html 并将边框底部添加到 div 以查看是否可以,但都失败了。
我的一些html
<div class="storyReader">
<div class="headerBlock">
<p>Title</p>
<p>Author</p>
<p>Description</p>
</div>
<div class="contentBlock">
<p>This is the really long content. This is the really long content. This is the really long content.</p>
<p>This is the really long content. This is the really long content. This is the really long content.</p>
<p>This is the really long content. This is the really long content. This is the really long content.</p>
</div>
</div>