CSS 参考手册
CSS3 font-stretch 属性
让所有的div元素的文本更宽
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> #div1 { font-stretch: condensed; } #div2 { font-stretch: expanded; } </style> </head> <body> <p><b>Note:</b> No browsers support the font-stretch property.</p> <div> Some normal text in a div element. </div> <div id="div1"> Some condensed text in a div element. </div> <div id="div2"> Some expanded text in a div element. </div> </body> </html>
运行结果:
点击运行 »