View Single Post
Old 05-20-2013, 07:58 AM   #1
flyingfoxlee
Member
flyingfoxlee began at the beginning.
 
Posts: 21
Karma: 10
Join Date: May 2011
Device: kindle 3
Angry Dashed lines auto removed if output type is mobi

I was trying to add some dash line between sections using ebook-convert while fetching news.

I put the following css spcs in extra_css variable,
Code:
.dash-line {
    border-bottom: 1px dashed rgb(0, 0, 0);
        border-bottom-width: 1px;
        border-bottom-style: dashed;
        border-bottom-color: rgb(0, 0, 0);
}
Then use
Code:
<div class="dash-line"></div>
to get a dashed line.
But it failed to appear when the output type is set to mobi, and it appears when the output
type is set to epub.

Kind of strange, how to fix it?
flyingfoxlee is offline   Reply With Quote