user348173
user348173

Reputation: 9288

Align large text with icon

I have a font-awesome icon and a big text. Now, the second line (and the others) starts right under the icon, but I want that it starts under first letter. How can I set alignement?
This is link to JSBin

Upvotes: 0

Views: 57

Answers (1)

G.L.P
G.L.P

Reputation: 7217

Try to use this in your css: Demo

li i{
  margin-left:-25px; 
  padding:0 5px;
}

Upvotes: 4

Related Questions