将网页内容限制在固定大小内

发布于 2024-10-03 19:20:23 字数 304 浏览 2 评论 0原文

我有一段html。我想将该 html 嵌入到我自己网页上的一对标签中。 html 代码事先并不知道。它是动态获得的。该 html 代码可以包含任何内容,通常是图像和文本以及 YouTube 视频。

问题是我想将内容嵌入固定大小。大小用宽度和高度(以像素为单位)指定。如果内容有大图像,我想以相同的系数调整图像以及其他内容的大小,以便整个内容可以适合指定的大小。一切仍然按比例进行。

我也不想要滚动条。我不知道该怎么做。我对 html 很熟悉,但对 CSS 不太了解。我在网上搜索过,试图找到其他人实现此功能的示例。我找不到任何。

你知道怎么做吗?

I have a piece of html. i want to embed that html into a pair of tags on my own web page. the html code is not known in advance. it is obtained dynamically. this html code can contain anything, normally images and texts and youtube videos.

the problem is that i want to embed the content into a fix size . the size is specified with width and height in pixels. if the content has large images, i want to resize the image as well as other content with a same factor such that the whole content can fit into the specified size. everything is still in proportion.

i don't want scrollbar either. i don't know how to do this. I'm familiar with html but not much with CSS. I have searched the web trying to find examples of other people implement this. I couldn't find any.

do you know how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神也荒唐 2024-10-10 19:20:23

如果内容有大图像,我想以相同的因子调整图像以及其他内容的大小,以便整个内容可以适合指定的大小。一切仍按比例进行

忘记这一点。它无法可靠地处理任意内容。

您可以将所有内容放入容器中:

<div id="container" style="width: 300px; height: 300px; overflow: hidden">
...    
</div>

然后尝试对其中的图像强制设置最大宽度:

#container img { max-width: 300px; }

但不要指望它总是看起来很漂亮。

目前还没有办法真正缩放 DIV 或 IFrame 内的内容。

if the content has large images, i want to resize the image as well as other content with a same factor such that the whole content can fit into the specified size. everything is still in proportion

Forget this. It's not going to work reliably for arbitrary content.

You can put everything into a container:

<div id="container" style="width: 300px; height: 300px; overflow: hidden">
...    
</div>

and then try to force a max-width on images therein:

#container img { max-width: 300px; }

but don't expect that it'll always look pretty.

There is no way to really zoom content inside a DIV or IFrame (yet).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文