ShibinRagh
ShibinRagh

Reputation: 6646

html5 validation figure tag structure

Please check Figure tag in html structure

html5 validation- Is this structure allowed ?

<a href="#">
   <figure>
      <img src="" class="img-responsive" alt="">
      <figcaption>Family</figcaption>
  </figure>
</a>

and

<figure>
   <a href="#">
      <img src="" class="img-responsive" alt="">
      <figcaption>Family</figcaption>
   </a>
</figure>

Thanks

Upvotes: 0

Views: 112

Answers (1)

James Cain
James Cain

Reputation: 61

The first code snippet is correct, and passes validation if you add text to the alt attribute and a '#' in the src attribute.

http://validator.nu/

Upvotes: 2

Related Questions