亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Specifies the space between characters

This example demonstrates:

#How to increase or decrease the space between characters.

Example analysis:

letter-spacing attribute is used to increase or decrease the space between characters (character spacing) .

Attribute values ??that can be set:

●Normal: Default value, stipulates that there is no extra space between characters.

●length: Defines the fixed space between characters (negative values ??are allowed).


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> h1 {letter-spacing:2px;} h2 {letter-spacing:-3px;} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> </body> </html>
submitReset Code