I am trying to align three text items to the right of a smaller left-floated icon without causing the text items to wrap.
div {
width:30%;
}
div i {
margin-right:0.75em;
padding:0.5em;
float:left;
color:#fff;
border-radius:50%;
clear:both;
background:rgb(255,143,69);
}
h3 {
margin-bottom:0.75em;
}
p {
margin-bottom:2.75em;
overflow:auto;
}
a {
font-size:0.9em;
color:#ff8f45;
}
In my current implementation -
http://jsfiddle.net/zu3k814d/7/
-- I have used the clear property for the heading and paragraph alignment with the icon as well as overflow property but the link below remains misaligned. Is there a more elegant solution to make it line up perfectly with the content above?