2
votes
Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ?
You can also use the target pseudo-class in CSS:
<html>
<head>
<style type="text/css">
div#test:target {
background-color: yellow;
}
</style>
…
