我在问以下是否可行。我有一个HTML5文章标签,里面有一个数字和figcaption标签。标题与图像重叠。该图应该是可点击的,但我想在标题中链接到另一个页面的其他链接,如分类页面。
我的标记应该如何。 现在我有以下内容,但是第一个标签在打开标签后会立即关闭。
<li class="grid_12 blog-post">
<a href="#">
<figure class="post-thumb">
<img src="images/blog-thumb.png" alt="Post thumbnail">
<figcaption class="entry-post">
<span class="capitalize">Entry</span>
<h1 class="entry-title">
<a href="#" title="">Fris. Responsive. Retina Ready.</a>
</h1><!-- End h1 .entry-title -->
<ul class="entry-meta">
<li class="author">
By <a href="#">Casper Biemans</a>
</li>
<li class="published">
On <a href="#">September 1, 2012</a>
</li>
<li class="entry-categories">
In <a href="#">Digital Art</a>
</li>
<li class="comment-count">
With <a href="#">22 Comments</a>
</li>
<li class="permalink">
<img src="images/permalink_icon.png" alt="Permalink post"><a href="#">Permalink</a>
</li>
</ul><!-- End ul.entry-meta -->
</figcaption><!-- End figcaption.entry-post -->
</figure><!-- End figure.post-thumb -->
</a>
</li><!-- End li.grid_12 blog-post -->