zoukankan      html  css  js  c++  java
  • CSS实例:图片导航块

    1. 认识CSS的 盒子模型。
    2. CSS选择器的灵活使用。
    3. 实例:
      1. 图片文字用div等元素布局形成HTML文件。
      2. 新建相应CSS文件,并link到html文件中。
      3. CSS文件中定义样式
        1. div.img:border,margin,width,float
        2. div.img img:width,height
        3. div.desc:text-align,padding
        4. div.img:hover:border
        5. div.clearfloat:clear
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>img</title>
        <link rel="stylesheet" type="text/css" href="../static/css/aa.css">
    
    
    </head>
    <body>
    
        <div>
            <div class="img">
                <a href="http://www.gzcc.cn/">
                    <img src="http://static.runoob.com/images/demo/demo4.jpg"></a>
                <div class="desc"><a href="http://www.gzcc.cn">校园风光</a></div>
            </div>
            <div class="img">
                <a href="http://www.gzcc.cn/">
                    <img src="http://static.runoob.com/images/demo/demo3.jpg"></a>
                <div class="desc"><a href="http://www.gzcc.cn">校友风采</a></div>
            </div>
            <div class="img">
                <a href="http://www.gzcc.cn/">
                    <img src="http://static.runoob.com/images/demo/demo2.jpg"></a>
                <div class="desc"><a href="http://www.gzcc.cn">学校文化</a></div>
            </div>
            <div class="img">
                <a href="http://www.gzcc.cn/">
                    <img src="http://static.runoob.com/images/demo/demo1.jpg"></a>
                <div class="desc"><a href="http://www.gzcc.cn">学生风采</a></div>
            </div>
        </div>
    
        <div class="clearfloat">
           <img src="http://static.runoob.com/images/demo/demo4.jpg" >
           <img src="http://static.runoob.com/images/demo/demo3.jpg" >
           <img src="http://static.runoob.com/images/demo/demo2.jpg" >
           <img src="http://static.runoob.com/images/demo/demo1.jpg" >
        </div>
    
    </body>
    </html>

    css

    img{
            width: 300px;
         }
        div.img{
            border: 1px solid #cccccc;
            width: 180px;
            float:left;
            margin:5px;
        }
        div.img img{
            width: 100%;
            height: auto;
        }
        div.desc{
            text-align: center;
            padding: 5px;
        }
        div.img:hover{
            border: 1px solid #777777;
        }
        .clearfloat{
            clear: both;
        }

  • 相关阅读:
    数据结构(java语言描述)顺序栈的使用(两个大数相加)
    DB2 Sql性能查看与优化
    spring默认为单例模式
    Java map的匿名类的初始化
    使用nohup后台执行ftp传输命令
    停止一个java的线程执行
    静态类
    XML语法随记
    Crontab有关
    string转Date转回String(JAVA)
  • 原文地址:https://www.cnblogs.com/Green-/p/7700524.html
Copyright © 2011-2022 走看看