仅使用其URL更改图像高度

时间:2018-01-16 11:12:46

标签: html css

假设我们有以下HTML:

<img src="IMAGE-URL" /> 

我需要在CSS中更改图像高度,而无需添加类或ID。

如何在CSS中编写此内容,例如IMAGE-URL height: 100px

2 个答案:

答案 0 :(得分:5)

您可以使用attribute selector

img[src="IMAGE-URL"] {
  height: 100px;
}

答案 1 :(得分:0)

只有在html中将样式附加到img本身时才有可能:

<img src="IMAGE-URL" style="height: 100px;"/>

或者在CSS中img全局像:

img {
height 100%;
}