Web前端之路

CSS样式-文本

2016-12-13  本文已影响32人  baiying

缩进文本

text-indent
例:p {text-indent:5em}

水平对齐

text-align

举例如下:

<html>
  
  <head>
    <style type="text/css">.spread {text-align:left} .tight {text-align:justify} .text{ background:green; width:80px; }</style></head>
  
  <body>
    <div class="text">
      <p class="spread">This is some text. This is some text.</p>
      <br>
      <p class="tight">This is some text. This is some text.</p></div>
  </body>

</html>
运行结果

字间隔

word-spacing

字母间隔

letter-spacing

文本装饰

text-decoration

字符转换

text-transform

处理空白符

white-space

具体如下:

white-space各值对应的处理

文本方向

direction

上一篇下一篇

猜你喜欢

热点阅读