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

学写网页 #02# 无题

时间:2018-03-08 00:04:08      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:http   col   blog   size   网页   span   image   图片   char   

参照物

 技术分享图片

 

v1

技术分享图片

<!DOCTYPE html>
<html>

    <head>
        <meta charset="utf-8" />
        <title>My Picture List</title>
        <link rel="stylesheet" href="css/hello.css" />
    </head>

    <body>
        <main>
            <div id="classification">
                <a href="index.html" class="tag"><span>萌物</span></a>
                <a href="index2.html" class="tag"><span>风景</span></a>
            </div>
            <div id="picture-panel">
                <div id="picture-box"><img src="img/6.jpg" alt="" /></div>
                <div id="picture-box"><img src="img/7.jpg" alt="" /></div>
            </div>
        </main>
        <footer></footer>        
    </body>
</html>
#picture-box {
    display: inline-block;
    width: 12em;
    height: 12em;
    overflow: hidden;
    margin-top: 0;
    margin-right: 12px;
    margin-bottom: 12px;
    margin-left: 0;
}

 

v2

技术分享图片

看上去好像是这么回事,实际上。。。 (手动捂脸

#classification {
    margin-top: 0.5em;
    margin-bottom: 0.5em;    
}

.tag {
    background-color: #009688;
    border-color: #009688;
    border-radius: 3px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
    display: inline-block;
    margin-right: 8px;
    padding: 0 16px;
}

.tag span {
    color: rgba(255,255,255,.8);
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    line-height: 49px;
    text-decoration: none;
    white-space: nowrap;
}

#picture-box {
    display: inline-block;
    width: 220px;
    height: 220px;
    overflow: hidden;
    margin-top: 0;
    margin-right: 12px;
    margin-bottom: 12px;
    margin-left: 0;
}

img {
    height: 100%;
}

学写网页 #02# 无题

标签:http   col   blog   size   网页   span   image   图片   char   

原文地址:https://www.cnblogs.com/xkxf/p/8524743.html

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