标签: css
以下代码适用于按钮,但不适用于图像:
button:focus { width:200px; height:200px; image.width:200px; }
有没有办法在CSS中做到这一点?
答案 0 :(得分:2)
包含的图像将成为选择器的一部分:
button:focus, button:focus img { width: 200px; height: 200px; }