有没有办法按比例缩小或放大整个 css 文件?

发布于 2025-01-08 08:54:37 字数 443 浏览 0 评论 0原文

这对你来说可能是显而易见的,但我绝对一无所知。我基本上有一堆工作正常的 css,但看起来太大了。我想将其切成四分之一,而不需要深入研究并更改每个值。例如,我想要很多这样的东西:

#p1
    {
        width: 1285px;
        height: 1388px;
        overflow: hidden;
        z-index: 1;
    }

更改为这样的东西:

#p1
    {
        width: 321px;
        height: 347px;
        overflow: hidden;
        z-index: 1;
    }

我只想保留功能,但缩小它以更好地适应页面。请告诉我,除了使用计算器和耐心之外,还有一种方法可以做到这一点。

This may be obvious to you, but I'm definitely clueless. I basically have a bunch of css that works fine, but appears way to large. I want to cut it into a quarter without going into it and changing each and every value. For instance I'd like many things like this:

#p1
    {
        width: 1285px;
        height: 1388px;
        overflow: hidden;
        z-index: 1;
    }

to change into something like this:

#p1
    {
        width: 321px;
        height: 347px;
        overflow: hidden;
        z-index: 1;
    }

I just want to retain the functionality but shrink it to fit better on the page. Please tell me there's a way to do this outside of using a calculator and a whole lot of patience.

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

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

发布评论

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

评论(2

与酒说心事 2025-01-15 08:54:37

你应该看看LESS

You should have a look at LESS.

墨洒年华 2025-01-15 08:54:37

或者编写一个脚本对数字执行正则表达式,将它们除以 x,然后更新它们?

Or write a script that performs a regex on the numbers, divides them by x, and updates them?

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