Skip to content Skip to sidebar Skip to footer

Semantically Correct Nested Anchors

I am working on a web applicaton. And what we also create is something that could be described as inline editing. Just to portray thing I am trying to solve I use example of Facebo

Solution 1:

Since you don't want javascript(which would have been easier), here is another method:

<divclass="post-block"><p><ahref="stevejobs/"title="#">Steve Jobs <spanstyle="color:none; text-decoration:none;">added 5 new photos.</span></a></p></div>

Any other style effects can be added. Such as cursor: none; etc. depending on your desired effect.

Solution 2:

HTML:

<divclass="post-block"><p><ahref="stevejobs/"title="#"><spanclass="author">Steve Jobs</span><spanclass="posttext">added 5 new photos.</span></a><p></div>

CSS:

.post-block { margin: 0px; } 
.post-blockp { margin: 0px; } 
.post-blockpa {display: inline-block; background-color: transparent; width: 100%; min-height: 100px; /* can be varied */ }
.post-blockpspan.author { display: inline-block; }
.post-blockpspan.posttext { display: inline-block; }

Solution 3:

In HTML5, a can be used as block-level element.

<div class="post-block">
   <ahref="stevejobs/"><p>Steve Jobs added 5 new photos.<p></a></div>

Now, remove the default link styling with CSS (.post-block a {text-decoration:none;}).

To get a link style back for the name, enclose the name in an element and add a class like "name". The b element would be a suitable choice here (otherwise use span):

<div class="post-block">
   <ahref="stevejobs/"><p><bclass="name">Steve Jobs</b> added 5 new photos.<p></a></div>

Now to get back the styling: .post-block .name {text-decoration:underline;}.

Enclosing the name in an element even allows you to use the microformat hCard, if you like.

Solution 4:

I have had the same issue for years, in that I want to maintain HTML semantics and SEO semantics too e.g. heading tags and paragraphs etc., while still keeping default anchor behaviours, e.g. indicating the destination URL in-browser, keeping tabbing intact and keeping the default anchor hover actions, which JavaScript doesn't do inherently.

The best solution I could figure was to put an absolutely positioned, block-level anchor over (covering) the content, and use the parent element's hover action to integrate any behaviours into the actual content, which is semantically correct and should be parsed correctly by all web-crawlers, thus:

.post-block {
  position: relative;
}

.post-blockpspan.anchor {
  text-decoration: underline;
}

.post-block:hoverpspan.anchor {
  text-decoration: none;
}

.postblocka.overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; /* to be on the safe side */text-indent: -9999em;
}
<divclass="post-block"><p><spanclass="anchor">Steve Jobs</span> added 5 new photos.<p><aclass="overlay"href="stevejobs/"title="#">Steve Jobs</a></div>

This works well for block and grid layouts and even plays nice with touch devices, because the anchor itself has no hover action - which some devices hijack the first click for :)

Not 100% sure if search engines penalise the text indent, but there are any number of additional work-arounds, discussion here to get anyone interested started.

Solution 5:

Just replace the anchor tag around "Steve Jobs" in your second example with a span and style it as you want:

<ahref="stevejobs/"title="#"><divclass="post-block"><p><spanclass="post-block-user">Steve Jobs</span> added 5 new photos.<p></div></a>

with CSS:

a {
    cursor: default;
}
.post-block-user {
    font-weight: bold;
    cursor: pointer;
}

or whatever styles you're looking to apply or not apply. Actually I would try to lose the div and put the class on the anchor tag, unless there's other reasons for keeping that structure.

Post a Comment for "Semantically Correct Nested Anchors"