如何根据 Apex 中的父区域调整图像大小?

How to make image resize with respect to it's parent region in Apex?

我有一个区域内的图像(静态内容类型)

图像是静态的,使用代码插入:

<img src="#APP_IMAGES#MyImage.jpg" alt="image">

我希望在调整父区域大小时,图像也调整大小。

请问有人知道如何实现吗?

谢谢。

试试这个:

<img src="#APP_IMAGES#MyImage.jpg" alt="image" style="width: 100%">