首页 > 解决方案 > 如何设置按钮背景图像的高度和宽度?

问题描述

我只想正确设置此处提到的图片按钮背景图像的高度和宽度!

float:right;
width: 40px;
height: 40px;
border-radius: 50%;

在此处输入图像描述

标签: htmlcss

解决方案


你应该使用background-imagewith 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>


推荐阅读