Currently in the process of optimizing my website for iPhones and exploring the Safari reader function.
I believe it's a useful feature for websites with lengthy text, similar to mine, but I want to customize it slightly.
Is there a way to adjust the appearance of the text in the reader? My goal is to insert a divider line to separate different sections of text. I've attempted adding
tags to the HTML and applying border-bottom styles to the div, but neither approach has been successful.
Snippet of my 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>