gpt4 book ai didi

css - 如何在 backbone js 中编写页面特定的 CSS

转载 作者:行者123 更新时间:2023-11-28 06:02:02 25 4
gpt4 key购买 nike

我有主干应用程序,想编写仅适用于特定页面的自定义 css。类似于我们在 <style></style> 中的写法html页面中的标签。有没有办法在backbone js中对应的dust文件中写类似的代码。我不想在 View js 文件中动态添加 css 文件,因为我的页面特定 css 将是一两行,并且每个页面都不同。

编辑:

我有如下所示的 jq 编辑器,它是动态呈现的(因此,不能编写内联 css),它在我的应用程序的多个页面中使用,我想在特定页面中控制它的高度、宽度和其他属性。这就是为什么我需要编写页面特定的 css,这个页面是用主干 js(.dust、view.js 和 model.js)编写的。 enter image description here

最佳答案

my page specific css will be one or two lines and it is different for every page

因为它很小,我认为通过 css 文件预先加载这个 CSS 不会有问题。

您可以简单地为每个页面设置一个选择器并指定 CSS,例如:

#page1 .editor{
/*^---unique selector of page*/
height:100%;
width:50%;
}
#page2 .editor{
/*--------^---selector of editor*/
height:80%;
width:60%;
}

关于css - 如何在 backbone js 中编写页面特定的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36690365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com