菜鸟学堂
在线运行
源代码
<!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>
运行结果
在线运行
菜鸟学堂 edu.jb51.net