insert graphic icon between text words, inline-block
Would like a graphic file of a small icon to be within the same sentence between text based words. Don't want any wrapping of the line as soon as it comes to the img icon. Want the small image to flow along with the text.
<p>Refer to this icon <div class="icon" alt="icon"></div>when accessing the activity.</p>
.icon {
width: 24px;
height: 23px;
background: url('../img/icon.jpg') no-repeat;
display: inline-block;
}
Do I need to add a display property to the <p> tag to better support this?
Thank you.
