html - How to align multi-line text after icon -
in table indentation (tree data), need align second line first line.
notice, text "tail" doesn't align "long"
created similar example here
div{ width:400px; } <div> <a href="">icon:</a> <span>this fight song. take life song. prove i'm alright song. power's turned on starting right i'll strong</span> </div>
you can display: table; , display: table-cell;
div{ width:400px; border: 1px solid black; display: table; padding: 10px; } a, span { display: table-cell; vertical-align: top; } <div> <a href="">icon:</a> <span>this fight song. take life song. prove i'm alright song. power's turned on starting right i'll strong</span> </div> 
Comments
Post a Comment