0

Is there a good CSS3 way of styling the img tag if it has a certain width without having to include a class to the image. (Perhaps using something like the

@media

queries)

4

1 回答 1

4

如果width在 HTML 中指定,例如:

<img src=".." width=250>

然后你可以使用这个 CSS :

img[width='250'] {
    /* style */
}

小提琴

于 2013-09-13T10:17:22.063 回答