JSFiddle - React, Tailwind, and code Playground
by ruslyrossi
HTML
<div class="right search_icon_box"> <span id="search" class="icon_search search_mall right"></span>
</div>
<div class="search_box">
<form method="get" action="mall.php">
<input type="text" autocomple="off" class="search" id="search_mall" placeholder="Mall" name="s">
</form>
</div>
CSS
.right {
float: right;
}
.icon_search, .icon_search_active {
background: url("http://beta.cardpow.com/images/icons-contents.png") no-repeat scroll -59px 7px / 197px auto rgba(0, 0, 0, 0);
display: block;
height: 39px;
margin: 0 5px;
width: 31px;
}
.search_icon_box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 40px;
}
.search_box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 14px;
}
.search {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #DDDDDD;
margin-left: 2px;
margin-top: 4px;
padding: 8px 5px;
width: -moz-calc(100% - 52px);
width: -webkit-calc(100% - 52px);
width: -o-calc(100% - 52px);
width: calc(100% - 52px);
}