在CSS中,当按钮聚焦时如何增长按钮+按钮图像?

时间:2010-09-16 13:58:20

标签: css

以下代码适用于按钮,但不适用于图像:

button:focus {
    width:200px;
    height:200px;
    image.width:200px;
}

有没有办法在CSS中做到这一点?

1 个答案:

答案 0 :(得分:2)

包含的图像将成为选择器的一部分:

button:focus, button:focus img {
    width: 200px; height: 200px;
}