View Single Post
Old 05-28-2014, 02:56 PM   #25
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,560
Karma: 20150435
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
On the other hand, this may work in ADE, but "inline-block" and "position" are not required properties in ePub 2.0.1 (and it requires two additional spans):

Code:
<div><span class="hang"><span><span>"</span></span></span>Testing line</div>
<div>secondline</div>
<div>third line</div>

span.hang {
    display: inline-block;
    width: 0;
}
span.hang span {
    display: inline-block;
    position: relative;
    right: 0;
}
span.hang span span {
    margin-left: -100%;
}
Jellby is offline   Reply With Quote