:target-within
Quick Summary for :target-within
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Code Usage for :target-within
/* Selects a <div> when one of its descendants is a target */ div:target-within {   background: cyan; } 
More Details for :target-within

:target-within

Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.

The :target-within CSS pseudo-class represents an element that is a target element or contains an element that is a target. A target element is a unique element with an id matching the URL's fragment. In other words, it represents an element that is itself matched by the :target pseudo-class or has a descendant that is matched by :target. (This includes descendants in shadow trees.)

/* Selects a <div> when one of its descendants is a target */ div:target-within {   background: cyan; } 

Syntax

:target-within

Examples

Highlighting an article

The :target-within pseudo-class can be used to highlight the article if anything inside it has been directly linked to. The :target pseudo-class is also being used to show which item has been targeted.

HTML
<h3>Table of Contents</h3> <ol>  <li><a href="#p1">Jump to the first paragraph!</a></li>  <li><a href="#p2">Jump to the second paragraph!</a></li>  </ol>  <article>  <h3>My Fun Article</h3> <p id="p1">You can target <i>this paragraph</i> using a   URL fragment. Click on the link above to try out!</p> <p id="p2">This is <i>another paragraph</i>, also accessible   from the links above. Isn't that delightful?</p> </article> 
CSS
article:target-within {   background-color: gold; }  /* Add a pseudo-element inside the target element */ p:target::before {   font: 70% sans-serif;   content: "►";   color: limegreen;   margin-right: .25em; }  /* Style italic elements within the target element */ p:target i {   color: red; } 
Result

Specifications

Specification
Selectors Level 4 # the-target-within-pseudo

See also

:target Select your preferred language English (US)Français Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
“If you just sit and observe, you will see how restless your mind is. If you try to calm it, it only makes it worse, but over time it does calm, and when it does, there’s room to hear more subtle things. You see so much more than you could see before. It’s a discipline; you have to practice it.”
Steve Jobs
Random CSS Property

@viewport

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
@viewport css reference