When a URL points at a specific piece of a document, it can be difficult to ascertain. Find out how you can use some simple CSS to draw attention to the target of a URL and improve the user's experience.
As an aid to identifying the destination of a link that points to a specific portion of a document, CSS3 Selectors introduces the :target
pseudo-class.
Picking a Target
The pseudo-class
is used to style the target element of a URI containing a fragment identifier. For example, the URI :target
http://developer.mozilla.org/en/docs/Using_the_:target_selector#Example
contains the fragment identifier #Example
. In HTML, identifiers are found as the values of either id
or name
attributes, since the two share the same namespace. Thus, the example URI would point to the heading "Example" in this document.
Suppose you wish to style any h2
element that is the target of a URI, but do not want any other kind of element to get a target style. This is simple enough:
h2:target {font-weight: bold;}
It's also possible to create styles that are specific to a particular fragment of the document. This is done using the same identifying value that is found in the URI. Thus, to add a border to the #Example
fragment, we would write:
#Example:target {border: 1px solid black;}
Targeting all Elements
If the intent is to create a "blanket" style that will apply to all targeted elements, then the universal selector comes in handy:
:target {color: red;}
Example
In the following example, there are five links that point to elements in the same document. Selecting the "First" link, for example, will cause <h1 id="one">
to become the target element. Note that the document may jump to a new scroll position, since target elements are placed on the top of the browser window if possible.
<h4 id="one">...</h4> <p id="two">...</p> <div id="three">...</div> <a id="four">...</a> <em id="five">...</em> <a href="#one">First</a> <a href="#two">Second</a> <a href="#three">Third</a> <a href="#four">Fourth</a> <a href="#five">Fifth</a>
Conclusion
In cases where a fragment identifier points to a portion of the document, readers may become confused about which part of the document they're supposed to be reading. By styling the target of a URI, reader confusion can be reduced or eliminated.
Related Links
Original Document Information
- Author(s): Eric Meyer, Standards Evangelist, Netscape Communications
- Original Copyright Information: Copyright © 2001-2003 Netscape. All rights reserved.
- Note: This reprinted article was originally part of the DevEdge site.