i just want to set properly height and width of background image of button that picture mentioned here!
float:right;
width: 40px;
height: 40px;
border-radius: 50%;
i just want to set properly height and width of background image of button that picture mentioned here!
float:right;
width: 40px;
height: 40px;
border-radius: 50%;
You should use background-image
with background-size: 100%
.
button{
background-image: url("https://i.stack.imgur.com/gdaRR.png");
float :right;
width: 40px;
height: 40px;
border-radius: 50%;
background-size: 100%;
border: none;
}
<button></button>
You are missing background-size property:
background-size: contain;
button {
float:right;
background: url('https://i.stack.imgur.com/gdaRR.png');
background-size: contain;
width: 40px;
height: 40px;
border-radius: 50%;
}
<button></button>