样式,将 @import url() 与应用程序的根目录一起使用
我希望在样式标签中使用“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不能在那里使用〜符号,不会被翻译。
您也可以使用服务器的根目录并在本地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.