I've been attempting to show a tick image after a div element, but no matter what CSS properties I try, I can't seem to get it right.
Previous answers to similar questions haven't provided the solution I need.
HTML:
<div class="link-input-container">
<input class="link-input" placeholder="Paste link here..." type="text" class="url_input" name="url_input">
</div>
CSS:
.link-input {
font-family: Courier New;
font-size: 12px;
}
.link-input-container::after {
display: block;
content: "";
width: 12px;
height: 12px;
background: transparent url('https://cdn0.iconfinder.com/data/icons/weboo-2/512/tick.png') no-repeat;
}
Fiddle: http://jsfiddle.net/mk3fauk5/