在我的详细信息页面中,我正在显示数据库中的描述,该描述是使用HTML编辑器添加的。
<div class="text"><?php echo html_entity_decode($details['description']); ?></div>
显示HTML内容是否正确?
我的第二个问题是,当描述中出现大图像时,完整图像不适合div内部。我希望将所有HTML描述都放入类&#34; text&#34;中。 怎么可能?
我正在使用PHP Codeigniter和Nice Editor。
答案 0 :(得分:2)
.text img {
width: 100%; //Fit the large images.
min-width: 100%; //Fit the small images.
}
答案 1 :(得分:0)
与每个网络浏览器兼容的最简单方法是使用此方法(将##和##替换为图像的宽度和高度,以像素为单位):
<div class="text">
text above image goes here<br>
<img src="whatever.jpg" width=## height=##><br>
text below image goes here
</div>