45IT.COM- 电脑学习从此开始!
DIY硬件教程攒机经验装机配置
设计Photoshop网页设计特效
系统注册表DOS系统命令其它
存储主板显卡外设键鼠内存
维修显卡CPU内存打印机
WinXPVistaWin7unix/linux
CPU光驱电源/散热显示器其它
修技主板硬盘键鼠显示器光驱
办公ExcelWordPowerPointWPS
编程数据库CSS脚本PHP
网络局域网QQ服务器
软件网络系统图像安全
页面导航: 首页 > 设计学院 > 网络编程 > CSS教程 >

DIV+CSS 网页TIP的简单作法

电脑软硬件应用网 45IT.COM 时间:2007-09-10 08:14 作者:未知

  基本的原理就是用display;当display: block;就显示;当display:none;时就不显示;

  例如:

 程序代码
#infobox span{ display: none; }
#infobox a:hover span{display: block;position:absolute;}


  效果如下:
 HTML代码:

  运行代码:
   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cnwebshow test tip</title>
<style>
/* cnwebshow.com */
*{ margin:0; padding:0; list-style:none; font-size:12px; line-height:1.8;}
body{ background: #333}
#info{padding:50px;}
#infobox{padding:0px 20px;background-color: #640000;}
#center{background: #ABBAAC; border-top:2px solid #333; padding:20px;}
.c{ clear:both; height:1px; overflow: hidden; background:#333}
#infobox li{ border-right:1px solid #000; float:left; margin-right:1px; text-align:center;margin-top:-4px; }
a{ width:100px;line-height:28px; display:block;}
a:link,a:visited{color:#000;background:#FF9900;text-decoration: none;}
a:hover,a:active{ color:#FFFF00;background:#000;}
/*以是下显示TIP的内容*/
#infobox span{ display: none; }
#infobox a:hover span{display: block;position:absolute;border:1px solid #640000;background: #FFFFCC;margin-top:26px!important; margin-top:20px;color:#000;padding:5px;white-space: nowrap;}
</style>
</head>
<body>
<div id="info">
 <div id="infobox">
  <ul>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>从这里可以进入我的首页!</span>网站首页</a></li>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>这里边有一些英语和笑话!</span>英语笑话</a></li>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>这里都是一些朋友的网站!</span>友情链接</a></li>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>你要有什么要说的就来这!</span>给我留言</a></li>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>是自已写的和收集的文章!</span>技术文章</a></li>
   <li><a href="http://www.cnwebshow.com" target="_blank"><span>没有了都放在日记里面了!</span>生活照片</a></li>
  </ul>
  <div class="c"></div>
 </div>
<div id="center">
</div>
</div>
</body>
</html>
顶一下
(2)
100%
踩一下
(0)
0%
------分隔线----------------------------
无法在这个位置找到: baidushare.htm
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
验证码:点击我更换图片
推荐知识