Skip to main content
Inspiring
March 23, 2026
Answered

How to maintain leading dots between title and author in EPUB?

  • March 23, 2026
  • 2 replies
  • 47 views

I have created a book and at the back is a bibliography which is just a list of titles and authors. In the print version, the title and the author are separated by a leading row of dots which looks very smart with the titles up against the left margin and the authors up against the right margin.. However, when I try to convert it to an e-book and look at it with Kindle Previewer, the dots have disappeared. Can anyone suggest how I can achieve leading dots with a list in an ePub? I have already asked the question to an AI source and received many many CSS solutions, none of which has resulted in the dots showing in the Kindle previewer.

    Correct answer jos088brus

    Hello,

    Your dots disappear in the eBook version; instead of relying on CSS, the most reliable approach is to use a simple HTML structure such as a table with the title left-aligned and the author right-aligned, or to manually include the dot leaders directly in the HTML (for example, typing the dots between the title and author), since these methods are consistently rendered across Kindle devices while CSS-based solutions like Ulta Card after, flexbox, or similar techniques are frequently ignored.

    2 replies

    Mike Witherell
    Community Expert
    Community Expert
    March 24, 2026

    Not everything that can be accomplished in typesetting in a page layout software will translate to the deliberately simpler epub. The name of the game is to simplify.

    Mike Witherell
    m5heathAuthor
    Inspiring
    March 24, 2026

    Message received and understood. I've learnt the hard way

    Mike Witherell
    Community Expert
    Community Expert
    March 24, 2026

    Is there any other way? 🤔

    Mike Witherell
    jos088brus
    jos088brusCorrect answer
    Participant
    March 24, 2026

    Hello,

    Your dots disappear in the eBook version; instead of relying on CSS, the most reliable approach is to use a simple HTML structure such as a table with the title left-aligned and the author right-aligned, or to manually include the dot leaders directly in the HTML (for example, typing the dots between the title and author), since these methods are consistently rendered across Kindle devices while CSS-based solutions like Ulta Card after, flexbox, or similar techniques are frequently ignored.

    m5heathAuthor
    Inspiring
    March 24, 2026

    When will Kindle join the 21st century? Thank you for your response and I believe that is the correct, the only solution.