JSFiddle - React, Tailwind, and code Playground

by Vijayakrishnan Krishnan

HTML

<input class="foo" type="text" >

CSS

.foo {
    position: relative;
    
}
.foo:before {
    background-image: url(http://i.stack.imgur.com/qnOzO.png);
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-position: 10px 10px;
    content: ".";
}
.foo:after {
    background-image: url(http://i.stack.imgur.com/qnOzO.png);
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    background-position: 10px 10px;
    content: ".";
}