View Single Post
Old 04-12-2016, 07:24 AM   #9
bentleymaniac
Enthusiast
bentleymaniac began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Oct 2015
Device: kobo
BTW, what's the usual formatting for html and css in an epub? I was taught to tab in for each command, but sigil and most ebooks I have looked at seem to write everything without tabs.
ie:
The way I learned html/css
Code:
<html>
<body>
    <p class="...">
        <span>...</span>
    </p>
</body>
</html>
but sigil seems to do everything flat
Code:
<html>
<body>
<p class="...">
<span>...</span>
</p>
</body>
</html>
which is correct/better?

Last edited by bentleymaniac; 04-12-2016 at 07:27 AM.
bentleymaniac is offline   Reply With Quote