Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Here is rough edit <a href="http://jsfiddle.net/tousif123/pDVvK/2/" rel="nofollow noreferrer">http://jsfiddle.net/tousif123/pDVvK/2/</a></p> <p>Just enclose the searchbox in a div and make the searchbox float right</p> <pre><code>input[type=search] { float:right; } </code></pre> <p><strong>Here is the whole code:-</strong> </p> <p><div class="snippet" data-lang="js" data-hide="false" data-console="true" data-babel="false"> <div class="snippet-code"> <pre class="snippet-code-css lang-css prettyprint-override"><code>.form-holder { float: right; } /* reset webkit search input browser style */ input { outline: none; } input[type=search] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; font-family: inherit; } input::-webkit-search-decoration, input::-webkit-search-cancel-button { display: none; /* remove the search and cancel icon */ } /* search input field */ input[type=search] { float:right; border: solid 1px #ccc; padding: 10px 60px 10px 32px; width: 55px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: 0 1px 1px #eae9e9; -webkit-transition: all .5s; -moz-transition: all .5s; transition: all .5s; } input[type=search]:focus { width: 100px; background-color: #fff; border-color: #6dcff6; -webkit-box-shadow: 0 0 5px rgba(109,207,246,.5); -moz-box-shadow: 0 0 5px rgba(109,207,246,.5); box-shadow: 0 0 5px rgba(109,207,246,.5); } /* placeholder */ input:-moz-placeholder { color: #999; } input::-webkit-input-placeholder { color: #999; font-size: 13px; margin-top: 10px; } .form_wrap { width:250px; } }</code></pre> <pre class="snippet-code-html lang-html prettyprint-override"><code>&lt;div class="form_wrap"&gt; &lt;form&gt; &lt;input type="search" placeholder="Search"&gt; &lt;/form&gt; &lt;/div&gt;</code></pre> </div> </div> </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload