`

CSS 精华-实用技巧

    博客分类:
  • Css
阅读更多
DIV  上下居中用 line-height
 <style type="text/css">
   div.v-align {
     line-height: 200px;
     height: 200px;
     border: 1px solid red;
    }
  </style>

 <div class="v-align">
    垂直居中
  </div> 


例子1:
<!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" xml:lang="en">
<head>
<title>AgiCRM</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="demo" content="Demo" />
<meta name="demo" content="demo" />
  <style type="text/css">
   div.v-align {
     line-height: 200px;
     height: 200px;
     border: 1px solid red;
    }
  </style>
<!--[if IE]>

<![endif]-->
</head>
<body>
  <div class="v-align">
    垂直居中
  </div>  
</body>
</html>


清除浏览器默认样式

1.用其他有名的库来清除(如:YUI)

2.自已清除
如:
*  {
    padding: 0;
    margin:0;
}

让A支持所有浏览器

 <style type="text/css">
   a.agideo:link, a.agideo:visited {
     font-weight: bold;
     text-decoration: none;
     color: green;
   }
   a.agideo:hover, a.agideo:active {
     font-weight: bold;
     text-decoration: none;
     color: red;
   } 
</style>

<a href="http://www.agideo.com" class="agideo">捷道数码</a>
<style type="text/css">
   a.google:hover, a.google:active {
     font-weight: bold;
     text-decoration: none;
     color: red;
   }
   a.google:link, a.google:visited {font-weight: bold;
     text-decoration: none;
     color: green;
   }
  </style>
  <a href="http://www.google.com" class="google">Google</a>


例子2:
<!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" xml:lang="en">
<head>
<title>AgiCRM</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="demo" content="Demo" />
<meta name="demo" content="demo" />
  <style type="text/css">
   a.agideo:link, a.agideo:visited {
     font-weight: bold;
     text-decoration: none;
     color: green;
   }
   a.agideo:hover, a.agideo:active {
     font-weight: bold;
     text-decoration: none;
     color: red;
   }
   a.google:hover, a.google:active {
     font-weight: bold;
     text-decoration: none;
     color: red;
   }
   a.google:link, a.google:visited {
     font-weight: bold;
     text-decoration: none;
     color: green;
   }
  </style>
<!--[if IE]>

<![endif]-->
</head>
<body>
  <a href="http://www.agideo.com" class="agideo">捷道数码</a>
  <a href="http://www.google.com" class="google">Google</a>
</body>
</html>


A 伪类定义顺序记忆法
LoVe:HAte(爱恨)


IMG vertical-align

vertical-align : auto | baseline | sub | super | top | text-top |  middle | bottom | text-bottom | length

baseline :默认值。将支持 valign 特性的对象的内容与基线对齐

sub   垂直对齐文本的下标
super   垂直对齐文本的上标

top :  将支持 valign 特性的对象的内容对象顶端对齐
text-top :  将支持 valign 特性的对象的文本与对象顶端对齐

middle :  将支持 valign 特性的对象的内容与对象中部对齐
bottom :  将支持 valign 特性的对象的内容与对象底端对齐

text-bottom : 将支持 valign 特性的对象的文本与对象顶端对齐
length : 由浮点数字和单位标识符组成的长度值 | 百分数。可为负数。定义由基线算起的偏移量。基线对于数值来说为0,对于百分数来说就是0%。请参阅 长度单位 。目前IE尚未实现此参数

例子3:
<!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" xml:lang="en">
<head>
<title>AgiCRM</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="demo" content="Demo" />
<meta name="demo" content="demo" />
  <style type="text/css">
    div.v-align {
      border: 1px solid red;
      line-height: 40px;
      float: left;
      font-size: 11px;
      height: 40px;
    }
    div.v-align img.only-img {
      float:left;
    }
    div.v-align.has-img {
      padding-top: 10px;
      height: 30px;
    }

    div.v-align.has-img-and-text img.has-text {
      vertical-align: -4px !important;
      vertical-align: middle;
      margin-top: -3px !important;
      margin-top: 0px;
    }
    div.v-align.has-img-and-text {
      padding-top: 0px !important;
      padding-top: 10px;
      height: 40px !important;
      height: 30px;
    }
  </style>
<!--[if IE]>

<![endif]-->
</head>
<body>
  <div class="v-align">
    正常
  </div>
  <div class="v-align has-img">
    <img src="http://dl.iteye.com/upload/attachment/162320/1f89f269-580c-304b-975a-e6004b9893ce.png" class="only-img" />
  </div>
  <div class="v-align has-img-and-text">
    <img src="./accept.png" align="absmiddle" class="has-text" />有图片有字
  </div>
</body>
</html>


垂直 Margin 叠加
例子4:
<!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" xml:lang="en">
<head>
<title>AgiCRM</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="demo" content="Demo" />
<meta name="demo" content="demo" />
  <style tyep="text/css">
    body, div {
      padding:0;
      margin:0;
    }
    div, span {
      padding: 10px;
      margin: 10px;
      border: 10px solid #000;
    }
    #div1 {
      background-color: red;
    }
    #div2 {
      background-color: green;
    }
    #div3 {
      background-color: blue;
    }
  </style>
<!--[if IE]>

<![endif]-->
</head>
<body>
  <div id="div1">
    <div>div1</div>
  </div>
  <div id="div2">
    <div>div2</div>
  </div>
  <div id="div3">
    <span>span1</span>
    <span>span2</span>
  </div>
</body>
</html>

  • Background position
  • 例子5:
    <!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" xml:lang="en">
    <head>
    <title>AgiCRM</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="demo" content="Demo" />
    <meta name="demo" content="demo" />
      <style tyep="text/css">
        body, div {
          padding:0;
          margin:0;
        }
        div {
          border:1px solid #ccc;
          height: 200px;
          width: 300px;
        }
        #div1 {
          background: url(http://dl.iteye.com/upload/attachment/162316/eee477c8-1fcc-3a41-874f-065f0d65a422.jpg) no-repeat 20px 20px;
        }
        #div2 {
          background: urlhttp://dl.iteye.com/upload/attachment/162316/eee477c8-1fcc-3a41-874f-065f0d65a422.jpg) no-repeat 20% 20%;
        }
        #div3 {
          background: url(http://dl.iteye.com/upload/attachment/162318/8be0e495-2d0a-3ec2-9f5f-7465eb8c23ae.jpg) no-repeat 20% 20%;
        }
      </style>
    <!--[if IE]>
    
    
    <![endif]-->
    </head>
    <body>
      <div id="div1">
        20px
      </div>
      <br/>
      <div id="div2">
        20%
      </div>
      <br/>
      <div id="div3">
        20%
      </div>
    </body>
    </html>




    Float 占地问题

    1.父子TAG都Float以父能包含子

     <style type="text/css">
        div.parent {
          border: 1px solid red;
          width: 600px;
          float: left; /* For round child */
        }
        div.child {
          border: 1px solid green;
          float: left;
        }
      </style>
     <div class="parent">
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
      </div>


    例子6:
    <!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" xml:lang="en">
    <head>
    <title>AgiCRM</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="demo" content="Demo" />
    <meta name="demo" content="demo" />
      <style type="text/css">
        div.parent {
          border: 1px solid red;
          width: 600px;
          float: left; /* For round child */
        }
        div.child {
          border: 1px solid green;
          float: left;
        }
      </style>
    <!--[if IE]>
    
    <![endif]-->
    </head>
    <body>
      <div class="parent">
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
      </div>
    </body>
    </html>


    2.最后一个子TAG后加一clear的无语义tag

     <style type="text/css">
        div.parent {
          border: 1px solid red;
          width: 600px;
        }
        div.child {
          border: 1px solid green;
          float: left;
        }
        div.clear {
          clear: both;
        }
      </style>
    <div class="parent">
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="clear"></div>
      </div>


    例子7:
    <!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" xml:lang="en">
    <head>
    <title>AgiCRM</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="demo" content="Demo" />
    <meta name="demo" content="demo" />
      <style type="text/css">
        div.parent {
          border: 1px solid red;
          width: 600px;
        }
        div.child {
          border: 1px solid green;
          float: left;
        }
        div.clear {
          clear: both;
        }
      </style>
    <!--[if IE]>
    
    <![endif]-->
    </head>
    <body>
      <div class="parent">
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="child">
          child
        </div>
        <div class="clear"></div>
      </div>
    </body>
    </html>
    




    • 描述: background position
    • 大小: 7.7 KB
    • 描述: background position 2
    • 大小: 2.8 KB
    • 描述: accept
    • 大小: 781 Bytes
    分享到:
    评论

    相关推荐

      实用CSS特效精华集锦

      本资源“实用CSS特效精华集锦”正是为提升网页设计美感而准备的一系列精选CSS技巧。 1. **CSS选择器**:CSS的选择器是用于定位HTML或XML文档中特定元素的关键工具。基础选择器如标签选择器(例如`&lt;p&gt;`)、类选择器...

      CSS精华实例参考

      本资源"CSS精华实例参考"集合了多种实用且高效的CSS技巧和实例,对于提升网页设计水平大有裨益。下面我们将深入探讨其中可能涵盖的关键知识点。 1. **选择器**:CSS选择器是定位HTML或XML元素的基础,包括类选择器...

      JavaScript+HTML+CSS网页精华

      这个名为"JavaScript+HTML+CSS网页精华"的压缩包很可能是汇集了一系列实用的网页设计示例和特效,帮助开发者提升技能或者为新项目提供灵感。 首先,HTML(HyperText Markup Language)是网页的基础,它定义了网页的...

      CSS SECRETS BETTER SOLUTIONS TO EVERYDAY WEB DESIGN PROBLEMS

      Lea Verou将CSS的精华集合于一书,提供了针对常见设计问题的解决方案,这些解决方案是实用的,能够迅速应用于项目中,提升用户体验设计。她的这本著作被许多行业内的专家推荐,如Smashing Magazine的联合创始人兼...

      CSS技巧打包

      这个“CSS技巧打包”集合了众多实用的CSS技巧,旨在帮助开发者提高工作效率,创建更美观、功能更丰富的网页。以下是一些关键知识点的详细解释: 1. **选择器优先级**:理解CSS选择器的优先级是优化CSS代码的关键。...

      50例DIV+CSS模板

      在网页设计领域,`DIV+CSS`是一种广泛采用的...无论是初学者还是经验丰富的开发者,都能从中受益,提升自己的网页布局技巧。这些模板不仅可以用于个人项目,也可以作为教育材料,帮助他人理解`DIV+CSS`布局的实践应用。

      New.Riders.Stunning.CSS3

      ### CSS3精华:项目实战指南 #### 一、前言 《Stunning CSS3》是一本专注于CSS3技术的书籍,作者是Zoe Mickley Gillenwater,由New Riders出版社出版。本书通过一系列实践项目来教授读者如何使用CSS3创建令人惊叹...

      JSLab JavaScript和Css精华代码库收藏版

      内容索引:脚本资源,Ajax/JavaScript,JSLab JSLab简要来说就是一些JavaScript和Css精华代码库,网站发起,收藏web前端dhtml精英共享和收藏的兼容性强、实用性强、技巧性强的Javascript脚本,以及大量的css布局、列表...

      CSS完全参考手册3.0.rar

      《CSS完全参考手册3.0》是一份详尽的CSS(Cascading Style Sheets)学习资源,旨在为网页设计师提供全面、准确且实用的CSS知识。这份手册在原有的《完美网页设计CSS快速参考》基础上进行了第三次重大更新,充分融入...

      jsp精华文章 推荐jsp 文档

      【标题】"jsp精华文章 推荐jsp 文档"涵盖了JSP(Java Server Pages)的高级和实用技术,这些技术是Web开发中的重要组成部分。JSP是一种动态网页技术,允许开发者将HTML、CSS、JavaScript与Java代码相结合,以创建...

      css布局九决 学css不再难

      《CSS布局九决》是学习CSS布局技巧的一种总结和提炼,旨在帮助初学者快速掌握CSS布局的核心要点,让布局工作变得简单易懂。以下将详细解释这九个诀窍: 一、IE边框若显若无,须注意,定是高度设置已忘记 在Internet...

      天极网页制作精华.rar

      除了基础技术和设计理念的介绍,"天极网页制作精华.chm" 文件还可能涵盖了网页设计的实用技巧。例如,在网页布局方面,设计者需要了解各种布局结构对用户体验的影响;色彩搭配与字体选择则直接关系到网页的视觉效果...

      天极网页制作精华CHM

      通过阅读《天极网页制作精华CHM》,读者不仅可以掌握网页制作的基本技能,还能了解到一些实用的技巧和最佳实践,提升在网页设计和开发领域的专业素养。同时,书中可能还包含了丰富的实例和实战经验,帮助读者将理论...

      asp代码精华[借鉴].pdf

      【ASP代码精华】这篇文档主要涉及了在ASP(Active Server Pages)编程中的一些实用技巧,主要涵盖以下几个方面: 1. **显示页面加载时间**:在ASP网页中,可以通过记录页面开始加载(`strStartTime = Timer`)和...

      天极网页制作精华

      这份资料可能包含了从基础到进阶的各种主题,涵盖了网页设计的基本原则、HTML语言、CSS样式表、JavaScript脚本、网页布局技巧以及响应式设计等多个关键领域。 首先,我们要理解网页制作的基础——HTML(HyperText ...

      网吧维护技术资料 合集

      1226 网吧维护\资料\xp实用技巧\Win98+Win2000+WinXP三操作系统共同使用安装实录 .txt 3160 网吧维护\资料\xp实用技巧\Windows XP主要问题以及解决方法一览.txt 9572 网吧维护\资料\xp实用技巧\Windows XP优化指南....

      HTMLCSSTheGoodPartsFreePdfBook-英文原版.zip

      总而言之,《HTML与CSS:Web设计的精华》这本书全面覆盖了HTML和CSS的基础知识和高级技巧,是任何想要深入理解网页设计和开发的读者的宝贵资源。通过阅读和实践书中的内容,开发者可以提升自己的技能,创建出更具...

      html学习宝典精华

      在"html学习宝典精华"中,我们可以深入探讨HTML的关键概念、语法以及实用技巧。 一、HTML基本结构 HTML文档通常由三部分组成:文档声明、头部(head)和主体(body)。文档声明如`&lt;!DOCTYPE html&gt;`告知浏览器文档...

      《技压群雄──电脑超级技巧3000招》

      《技压群雄──电脑超级技巧3000招》是一部专为计算机用户设计的实用指南,旨在通过丰富的技巧和窍门提升用户的电脑操作技能。这部书籍的火力加强版不仅包含原有的精华内容,还可能增加了最新的技术和解决方案,使得...

      网页设计精华问答分享

      在这个精华问答集中,我们找到了几个关键知识点,对于初学者和有经验的网页设计师都非常实用。 1. **动态更新页面内容**:在网页设计中,有时我们需要在多个页面上同步更新某一特定部分。一种解决方案是在主页面上...

    Global site tag (gtag.js) - Google Analytics