我一直在研究这个免费模板,它非常棒,但是在到达投资组合页面时,我遇到了一个障碍。HTML 代码如下:
<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'>
<a href="#!portfolio-item-2.html" class="hover-overlay">
<img alt="Project 2" src="images/portfolio/preview/2.jpg" />
<div class="overlay background-90-a">
<div class="hidden-xs">
<p class="title heading-a">YouTube Video</p>
<p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p>
<p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p>
</div>
谈论<a ref...>
的部分是指我似乎在模板文档中找不到的HTML文件(portfolio-item-2.html(。
我该怎么办?
你在 href 中使用 #!试试这个:
<div class="item col-md-3 col-sm-4 col-xs-6" data-groups='["photography", "web", "video"]'>
<a href="portfolio-item-2.html" class="hover-overlay">
<img alt="Project 2" src="images/portfolio/preview/2.jpg" />
<div class="overlay background-90-a">
<div class="hidden-xs">
<p class="title heading-a">YouTube Video</p>
<p class="text-center heading-a"><strong>Excepteur sint lorem ipsum dolor sit amet consectetur.</strong></p>
<p class="text-center"><i class="fa fa-youtube-square heading-a"></i></p>
</div>
Run code snippetCopy snippet to answerHide results