I’m want to apply the style to :target to all elements within the .container class.
However, the following is being applied to :target anywhere on the page.
.container :target {
scroll-margin-top: 100px;
}
What am I doing wrong?
I’m want to apply the style to :target to all elements within the .container class.
However, the following is being applied to :target anywhere on the page.
.container :target {
scroll-margin-top: 100px;
}
What am I doing wrong?
I think the issue is you added a space after .container
, remove the space.
Here’s a demo I did on codepen
hard to say without seeing any other code(your full html and css)
My guess is that you have all the containers as members of container
class?
You could set an id on the specific container you want to target, and then target that id in your CSS.
Classes use " . ", ids use " # ". Id has higher specificity than class.
But again based on the code you have provided, it is difficult to guess.
or that
I’m not at liberty to share the code, but I created a minimal example for what I wanted to do, and it actually worked.
After some digging I found out that I that the CSS file I was editing was a copy, and not the one in use. The code I posted does indeed work. And the space is needed, it does not work when removed.
Well, lesson learned.
Understandable. I’ve done things like that myself before lol
Glad you got it sorted out.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.