html5教程———CSS 图片廊用HTML+css打造出好看的图片轮廓 前段大G > HTML5网页设计 > 最新文章 >

html5教程———CSS 图片廊用HTML+css打造出好看的图片轮廓

图片廊

以下是使用 CSS 创建图片廊:

  <div class="responsive">
        <div class="img">
            <a target="_blank" href="图片地址">
                <img decoding="async" fetchpriority="high" src="图片地址"
                    alt="图片文本描述" width="300" height="200">
            </a>
            <div class="desc">这里添加图片文本描述</div>
        </div>
    </div>
    <div class="responsive">
        <div class="img">
            <a target="_blank" href="图片地址">
                <img decoding="async" src="图片地址" alt="图片文本描述" width="300"
                    height="200">
            </a>
            <div class="desc">这里添加图片文本描述</div>
        </div>
    </div>
    <div class="responsive">
        <div class="img">
            <a target="_blank" href="图片地址">
                <img decoding="async" src="图片地址" alt="图片文本描述" width="300"
                    height="200">
            </a>
            <div class="desc">这里添加图片文本描述</div>
        </div>
    </div>
    <div class="responsive">
        <div class="img">
            <a target="_blank" href="图片地址">
                <img decoding="async" loading="lazy" src="图片地址" alt="图片文本描述"
                    width="300" height="200">
            </a>
            <div class="desc">这里添加图片文本描述</div>
        </div>
    </div>

这篇html5教程———CSS 图片廊用HTML+css打造出好看的图片轮廓 ,文章就结束了,有不懂的地方可以联系站长。希望每个前端人员都有可以找到一个好工作,谢谢观看,祝您生活愉快。

前端大G 2023-12-04 11:11 文章点击量: 作者:【前端大G

文章标签: CSS,图片,廊用,HTML+css,打,造出,好,看的,轮