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"

enter image description here

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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -