CSS 图片廊

图片廊

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

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
    <style>
        div.img
        {
            margin: 2px;
            border: 1px solid #0000ff;
            height: auto;
            width: auto;
            float: left;
            text-align: center;
        }
        div.img img
        {
            display: inline;
            margin: 3px;
            border: 1px solid #ffffff;
        }
        div.img a:hover img {border: 1px solid #0000ff;}
        div.desc
        {
            text-align: center;
            font-weight: normal;
            width: 120px;
            margin: 2px;
        }
    </style>
</head>
<body>

<div class="img">
    <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Klematis" width="110" height="90"></a>
    <div class="desc">添加一个图像的描述</div>
</div>
<div class="img">
    <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/5809800b44336872.jpg" alt="Klematis" width="110" height="90"></a>
    <div class="desc">添加一个图像的描述</div>
</div>
<div class="img">
    <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/5809800b44336872.jpg" alt="Klematis" width="110" height="90"></a>
    <div class="desc">添加一个图像的描述</div>
</div>
<div class="img">
    <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Klematis" width="110" height="90"></a>
    <div class="desc">添加一个图像的描述</div>
</div>

</body>
</html>

运行程序尝试一下



继续学习
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> div.img { margin: 2px; border: 1px solid #0000ff; height: auto; width: auto; float: left; text-align: center; } div.img img { display: inline; margin: 3px; border: 1px solid #ffffff; } div.img a:hover img {border: 1px solid #0000ff;} div.desc { text-align: center; font-weight: normal; width: 120px; margin: 2px; } </style> </head> <body> <div class="img"> <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Klematis" width="110" height="90"></a> <div class="desc">添加一个图像的描述</div> </div> <div class="img"> <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/5809800b44336872.jpg" alt="Klematis" width="110" height="90"></a> <div class="desc">添加一个图像的描述</div> </div> <div class="img"> <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/5809800b44336872.jpg" alt="Klematis" width="110" height="90"></a> <div class="desc">添加一个图像的描述</div> </div> <div class="img"> <a target="_blank" href=""><img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Klematis" width="110" height="90"></a> <div class="desc">添加一个图像的描述</div> </div> </body> </html>
提交重置代码