div 中的图片内容如何匹配?

How fit image contents inside div?

在我的详细信息页面中,我正在显示来自数据库的描述,这是使用 HTML 编辑器添加的。

<div class="text"><?php echo html_entity_decode($details['description']); ?></div>

显示 HTML 内容的方式是否正确?

我的第二个问题是,当描述中出现大图像时,完整图像不适合 div.I 想要将我所有的 HTML 描述放入 class "text" . 怎么可能?

我正在使用 PHP Codeigniter 和 Nice Editor。

.text img {
    width: 100%; //Fit the large images.
    min-width: 100%; //Fit the small images.
}

与每个 Web 浏览器兼容的最简单方法是使用此方法(同时将 ## 和 ## 替换为图像的宽度和高度(以像素为单位)):

<div class="text">
text above image goes here<br>
<img src="whatever.jpg" width=## height=##><br>
text below image goes here
</div>