October 2017
Intermediate to advanced
370 pages
8h 57m
English
We can use CSS to style the input elements to get the effect we want. First, the keyword field:
input[type="search"] { border-top-left-radius: 4px; border-bottom-left-radius: 4px; padding:0 0.5rem; font-size: 1.4rem; width: 100%;}
Note the border-top-left-radius and border-bottom-left-radius properties; these give us rounded corners! Next, the submit button. We're going to add an SVG magnifying glass search icon as the background image:
input[type="submit"] { width:2.5rem; background-repeat: no-repeat; background-image: url('img/search-icon.svg'); background-size: 1.4rem 1.4rem; background-position: 50% 50%; border-top-right-radius: 4px; border-bottom-right-radius: 4px; margin-left:-4px; background-color: #febd69; ...Read now
Unlock full access