Edit: Another option, which by the way is even more semantic, would be to put the SVG in the <label>
, doing so:
label {
position: relative;
}
label:before {
content: "";
position: absolute;
left: 10px;
top: 0;
bottom: 0;
width: 20px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill-rule='evenodd'%3E%3Cpath d='M16.036 18.455l2.404-2.405 5.586 5.587-2.404 2.404zM8.5 2C12.1 2 15 4.9 15 8.5S12.1 15 8.5 15 2 12.1 2 8.5 4.9 2 8.5 2zm0-2C3.8 0 0 3.8 0 8.5S3.8 17 8.5 17 17 13.2 17 8.5 13.2 0 8.5 0zM15 16a1 1 0 1 1 2 0 1 1 0 1 1-2 0'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
}
input {
padding: 10px 30px;
}
<label>
<input type="button" value="Entrar">
</label>
I’m going to give a different answer to what you have in the question marked as duplicate, because I believe it will suit you better.
First for knowledge: It is not all <input>
accepting pseudo element ::after
and ::before
as you can see in this question. Pseudo elements ::after and ::before work on which input types
So for example I’ll use the <button>
Now the technique using the content
of the pseudo element ::after
to place the symbol of Font Awesome whatever you want.
See the example below:
.awesome {
position: relative;
padding: 10px;
background-color: brown;
width: 100px;
height: 40px;
border: none;
cursor: pointer;
}
.awesome::after {
content: "\f00c";
font-family: FontAwesome;
color: #fff;
font-size: 18px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 250ms ease-in-out;
}
.awesome:hover::after {
font-size: 24px;
content: "\f1b9";
font-family: FontAwesome;
}
<link rel="stylesheet" type="text/css" media="screen" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<button class="awesome"></button>
OBS1: To use the Font Awesome in the content:""
you need to use the Unicode value of the character, if using the default Font Awesome class will not work.
It would not be with
background-image:url('imagem.svg')
?– Homer Simpson
Use: input:before{content: "path/imagen.svg: ";}
– AnthraxisBR
Possible duplicate of Use symbol in input text, and disappear when typed
– Homer Simpson