码迷,mamicode.com
首页 > Web开发 > 详细

Css常用操作——————图片

时间:2016-05-14 01:12:34      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:css常用操作——————图片

body{
    background-color: #0078b3;
}

.image{
    border: 1px solid darkgray;
    width: auto;
    height: auto;
    float: left;
    text-align: center;
    margin: 5px;
}

img{
    margin: 5px;
    opacity: 1;
}

.text{
    font-size: 12px;
    margin-bottom: 5px;
}

a:hover{
    background-color: aqua;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>图片</title>
    <link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>

    <div class="image">
        <a href="#" target="_self">
            <img src="2.jpg" alt="背景" width="200px" height="200px">
        </a>
        <div class="text">一张背景图</div>
    </div>
    <div class="image">
        <a href="#" target="_self">
            <img src="2.jpg" alt="背景" width="200px" height="200px">
        </a>
        <div class="text">一张背景图</div>
    </div>
    <div class="image">
        <a href="#" target="_self">
            <img src="2.jpg" alt="背景" width="200px" height="200px">
        </a>
        <div class="text">一张背景图</div>
    </div>
    <div class="image">
        <a href="#" target="_self">
            <img src="2.jpg" alt="背景" width="200px" height="200px">
        </a>
        <div class="text">一张背景图</div>
    </div>
</body>
</html>


Css常用操作——————图片

标签:css常用操作——————图片

原文地址:http://11317783.blog.51cto.com/11307783/1773195

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!