HTMLCSS-你能用CSS定义一个带有图像的类吗?
像这样的东西
HTML
<button>This button has an image</button>
<button>This button has the same image</button>
CSS
.img {
url: '/testimage.png'
}
回答
使用背景图像属性。
.img {
background-image: url("testimage.png");
}
像这样的东西
HTML
<button>This button has an image</button>
<button>This button has the same image</button>
CSS
.img {
url: '/testimage.png'
}
使用背景图像属性。
.img {
background-image: url("testimage.png");
}