我正在制作一个 RSS 阅读器,为了在水平宽度内显示图像,我将以下 CSS 代码附加到 HTML 内容中:
<html><style type='text/css'>*
{ max-width: 100%% !important;
width: auto !important;
height: auto !important; }
</style><body>%@</body></html>
这是个好主意吗?使用 * 而不是 img 标签的原因是,当您在图像周围使用标题 div(如 wordpress 那样)时,该图像会超出水平范围。
使用这个会破坏什么吗?