text

There are many text properties that can transform text into uppercase, lowercase. They can specify the position of the text and the space between words or letters.

text-transform

1
2
3
text-transform:capitalize;
text-transform:uppercase;
text-transform:lowercase;

text-align

1
2
3
text-align:right;
text-align:center;
text-align:left;

word-spacing

1
word-spacing:5px;

letter-spacing

1
word-spacing:2px;

line-height

1
2
3
<style>
span{line-height:5px;}
</style>

text-indent

1
2
3
<style>
p{text-indent:5em;}
</style>

详情