带百分比的图像占位符?
Image Placeholder with Percentages?
知道是否有办法使用百分比占位符吗?
我知道有代码允许您输入像素尺寸,但是百分比呢?占位符的代码是 img src="http://placehold.it/350x150"。我问是因为我想将线框放在一起,但我也希望它适合使用的任何屏幕。谢谢。
如果您正在使用占位符,那只是结束文件尺寸,您可以使用 css 将大小更改为您想要的任何大小
img{
width:50%; /** Set to whatever you need **/
height:auto; /** Retain image aspect ratio **/
}
可选
添加 max-width
、min-width
/ min-height
、max-height
以获得更多控制
知道是否有办法使用百分比占位符吗?
我知道有代码允许您输入像素尺寸,但是百分比呢?占位符的代码是 img src="http://placehold.it/350x150"。我问是因为我想将线框放在一起,但我也希望它适合使用的任何屏幕。谢谢。
如果您正在使用占位符,那只是结束文件尺寸,您可以使用 css 将大小更改为您想要的任何大小
img{
width:50%; /** Set to whatever you need **/
height:auto; /** Retain image aspect ratio **/
}
可选
添加 max-width
、min-width
/ min-height
、max-height
以获得更多控制