Is there a CSS selector for an IMG which has been constrained by max-width or max-height?

前端 未结 1 1770
迷失自我
迷失自我 2021-01-13 09:17

If I define the following CSS rule:

img {
    max-width:  200px;
    max-height: 200px;
    border: 1px solid black;
}

Is there a pure-CSS

1条回答
  •  迷失自我
    2021-01-13 09:53

    No, there are no CSS selectors that can query style properties, whether declared or computed, as rendering of DOM elements has no relation to the DOM hierarchy.

    0 讨论(0)
提交回复
热议问题