样式,将 @import url() 与应用程序的根目录一起使用

发布于 2024-11-26 05:28:42 字数 498 浏览 2 评论 0原文

我希望在样式标签中使用“root”或“~”,以将所有样式保存在一起并放在一个位置。

不必依赖“../../”符号,这可以实现吗?

我当前的代码..

<style type="text/css">
    @import url(../../../styles_dev.css);
    @import url(../../styles/AssessHome.css);

    li{font-size: 14px;}
</style>

有没有办法将其转换为类似的代码...

<style type="text/css">
    @import url(~/styles_dev.css);
    @import url(~/styles/AssessHome.css);

    li{font-size: 14px;}
</style>

感谢您的帮助!

I'm looking to use 'root' or '~' within a style tag to keep all my styles together and in one location.

Instead of having to rely on '../../' notation, can this be achieved?

My current code..

<style type="text/css">
    @import url(../../../styles_dev.css);
    @import url(../../styles/AssessHome.css);

    li{font-size: 14px;}
</style>

Is there a way to convert this to something like this...

<style type="text/css">
    @import url(~/styles_dev.css);
    @import url(~/styles/AssessHome.css);

    li{font-size: 14px;}
</style>

Thanks for any help!

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

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

发布评论

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

评论(1

年少掌心 2024-12-03 05:28:42

不,您不能在那里使用〜符号,不会被翻译。

您也可以使用服务器的根目录并在本地iis上运行和调试您的网站,或者使用相对路径一切准备就绪。

其他解决方案是使用 css 的自定义处理程序在此行后面的代码中进行渲染。

No you can not use the ~ symbol there, is not going to be translate.

Alternative you can use the root of your server and run and debug your site on local iis, or use the relative paths as you all ready do.

Other solution is to render in code behind this lines using a custom handler for css.

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