html中文字浮動后如何調文字間距?
css 樣式有個letter-spacing,用來調節字字之間的間距! <html> <head> <style type="text/css"> h1 {letter-spacing: -0.5em} h4 {letter-spacing: 20px} </style> </head> <body> <h1>This is header 1</h1> <h4>This is header 4</h4> </body> </html>
html中文字浮動后如何調文字間距?
css 樣式有個letter-spacing,用來調節字字之間的間距! <html> <head> <style type="text/css"> h1 {letter-spacing: -0.5em} h4 {letter-spacing: 20px} </style> </head> <body> <h1>This is header 1</h1> <h4>This is header 4</h4> </body> </html>