Published
- 1 min read
add icon left text css
The solution for this is noted below
add icon left text css
Solution
<span class="create">Create something</span>
<style>
.create
{
background-image: url('somewhere.jpg');
background-repeat: no-repeat;
padding-left: 30px; /* width of the image plus a little extra padding */
display: block; /* may not need this, but I've found I do */
}
</style>
Try other methods by searching on the site. That is if this doesn’t work