您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > 表单按钮 >

    用CSS实现链接文字阴影效果

    时间:2014-06-08 09:19 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    运行代码保存代码复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
    • 用CSS制作的阴影链接文字,很实用的效果哦!
    • <style type="text/css">  
      #nav {
      list-style: none;
      display: inline;
      }
      #nav li {
      display: inline;
      margin-right: 5px;
      float: left;
      height: 20px;
      width: 20px;
      }
      #nav a {
      color: #399;
      text-decoration: none;
      display: block;
      font-size: 14px;
      font-family: Geneva, Arial, Helvetica, sans-serif;
      border: 1px solid #999;
      width: 20px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      }
      #nav li a:hover {
      font-size: 24px;
      line-height: 30px;
      height: 30px;
      width: 30px;
      position: absolute;
      z-index: 10;
      margin: -5px 0 0 -5px;
      font-weight: bold;
      color: #CC66FF;
      border: 1px dotted #666666;
      background: #EEE;
      }
      </style>
    用CSS实现链接文字阴影效果由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/biaodan/8558.html
    标签:网站源码
    下一篇:没有了