css字体

1、单词上浮:An old woman <span id="text1" style="vertical-align:super">had</span> a cat.

  注意:适用于<span>标签

2、首行缩进:text-indent: 10%;  段落两侧对其:text-align: justify;

3、字间距:word-spacing:10px;  字母间距:letter-spacing:10px;

4、字体装饰:text-decoration:underline/overline/line-through/none(下划线、上划线、穿过)

5、字体阴影:text-shadow:green 3px 3px(颜色、偏移坐标上下左右)

  当然阴影也可以利用position来实现;

6、保留标签里的空白地方:white-space属性

  eg:

    <p style="white-space:preline">

        there are

    mang

    </p>

    输出:

        there are

    mang

posted on 2015-05-20 20:17  I'm龙龙  阅读(110)  评论(0)    收藏  举报

导航