码迷,mamicode.com
首页 > Web开发 > 详细

css基础知识

时间:2015-04-28 11:21:04      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

1、用css实现段落前面缩进两个字

   text-indent: 2em; /*em是相对单位,2em即现在一个字大小的两倍*/

2、用css实现水平虚线的两种方法

   <hr size="1" noshade="noshade" style="border:1px #cccccc dotted;"/>

   <div style="border-top:1px dashed #ccccccc;height:1px;overflow:hidden;"></div>

3、css简单重叠线效果

    样式*{padding:0;margin:0;}

         .line{width:100%;height:30px;line-height:30px;border-bottom:2px grey solid;}

         h3{width:30%;height:30px;line-height:30px;border-bottom:2px green solid;display:inline-block;*zoom:1;*display:inline;margin-bottom:-2px;}

 <div class="line">

   <h3>天之蓝,梦之绿</h3>

</div>

css基础知识

标签:

原文地址:http://www.cnblogs.com/lissa/p/4462381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!