0

我在问以下是否可能。我有一个 HTML5 文章标签,里面有一个 figure 和 figcaption 标签。标题与图像重叠。该图应该是可点击的,但我希望标题中的一些其他链接链接到另一个页面,例如类别页面。

我的标记应该是什么样子。现在我有以下内容,但是第一个 a 标签将在打开 a 标签后立即关闭。

                <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 -->
4

0 回答 0