gpt4 book ai didi

javascript - 通过 javascript 更改相同的 css 类属性

转载 作者:太空宇宙 更新时间:2023-11-04 11:48:54 24 4
gpt4 key购买 nike

我在多个页面中有一个相同的类。我可以控制 css,通过它我可以更改 css 的属性。

div.single-column div.middle {
padding: 10px 20px;
clear: both;
position: relative;
top: 70px;
}

在一个页面中,我想制作top:70px,其余页面我想要top:0

有什么方法可以通过 JavaScript 在一个页面上控制它吗?

最佳答案

假设您正在使用两个页面:

  • main.html
  • sub1.html
  • sub2.html

main.html , 对于 <body>给这样的类:

<body class="main">

对于两个子页面,使用:

<body class="sub">

然后像这样提供 CSS:

.main .middle {top: 0px;}
.sub .middle {top: 70px;}

关于javascript - 通过 javascript 更改相同的 css 类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30785982/

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