Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何标准的地方和方法来定义一个 css 文件并在子网站的某些页面中引用它?
以下代码有效,但拥有绝对路径和任意位置似乎不是一个好的解决方案(特别是当我们处理数百个主题时。
<link rel="stylesheet" type="text/css" href="PATH_TO_FILE/mystyle.css">
在任何页面上附加您的 CSS 文件并通过将 /pub/%WEB%/Webhome/ 附加到路径来引用它。也许不是标准解决方案,但仍然有效。
<link rel="stylesheet" type="text/css" href="/pub/%WEB%/Webhome/mystyle.css">