分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

CSS实例:图片导航块

发布时间:2023-09-06 01:18责任编辑:熊小新关键词:CSS
  1. 认识CSS的 盒子模型。
  2. CSS选择器的灵活使用。
  3. 实例:
    1. 图片文字用div等元素布局形成HTML文件。
    2. 新建相应CSS文件,并link到html文件中。
    3. CSS文件中定义样式
    4. div.img:border,margin,width,float;    div.img img:width,height;     div.desc:text-align,padding;        div.img:hover:border;     div.clearfloat:clear;
  4. <!DOCTYPE html><html lang="en"><head> ???<meta charset="UTF-8"> ???<title>img</title> ????<link rel="stylesheet" type="text/css" href="../static/202.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="d"><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="d"><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="d"><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="d"><a href="http://www.gzcc.cn/">花前月下</a></div> ?</div> ????</div> ???<div class="clearfolat"> ????<img src="http://static.runoob.com/images/demo/demo4.jpg"><br> ????<img src="http://static.runoob.com/images/demo/demo3.jpg"><br> ????<img src="http://static.runoob.com/images/demo/demo2.jpg"><br> ????<img src="http://static.runoob.com/images/demo/demo1.jpg"><br> </div></body></html>

    css

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

CSS实例:图片导航块

原文地址:http://www.cnblogs.com/00js/p/7698774.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved