HTML/CSS:使宽度在多种分辨率下保持一致

发布于 2024-08-29 01:29:11 字数 124 浏览 5 评论 0原文

我在页面上渲染了一些大小为 15px 的正方形。它们的绝对尺寸根据屏幕分辨率而变化 - 因此在非常大的分辨率下,它们最终看起来比我想要的要小得多。

如何在 CSS 中定义宽度以确保它们在所有不同分辨率下或多或少成比例?

I have some squares s of size 15px rendered on a page. Their absolute size varies based on the screen resolution - so on very large resolutions, these end up looking much smaller than I want them to be.

How do I define the width in CSS to make sure they are more or less proportionate across all the different resolutions?

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

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

发布评论

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

评论(2

给我一枪 2024-09-05 01:29:11

您可以使用百分比。

  width:20%

这样,无论分辨率如何,宽度都是屏幕尺寸的百分比。

You can use percentages.

  width:20%

this way the width is a percentage of the screen size regardless of resolution.

别挽留 2024-09-05 01:29:11

了解CSS 单元。您需要使用相对单位,例如:emex。百分比始终是一个好方法,但有时很难将其“绑定”到字体大小。

Read about CSS Units. You need to use relative unit, such as: em or ex. Percentage is always a good way to go, but sometimes it’s hard to 'bind it' to the font size.

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