gpt4 book ai didi

css - 不同页面的不同CSS

转载 作者:行者123 更新时间:2023-12-02 17:43:32 26 4
gpt4 key购买 nike

我在 Blogger 上有一个博客和一些小部件。我想知道与其他页面相比,小部件在主页上的显示方式是否可能不同?

例如一个盒子

/* on home page, it should appear like this */
#box {
background: green;
width:200px; height:100px;
}

/* on other pages, it should appear like this */
#box {
background: red;
width:200px; height:200px;
}

最佳答案

我建议,将 ID 放入您的主页,例如,

<body id="home">和其他页面的其他ID

现在 CSS 的变化是

/* on home page, it should appear like this */
#home #box {
background: green;
width:200px; height:100px;
}

/* on other pages, it should appear like this */
#others #box {
background: red;
width:200px; height:200px;
}

关于css - 不同页面的不同CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17715291/

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