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?