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>

运行程序尝试一下



继续学习
||
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!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>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
提交重置代码
图片放大关闭