用 CSS 设置制表符宽度
在 CSS 中使用 tab-size 属性设置制表符宽度。尝试运行以下代码来实现 tab-size 属性
示例
<!DOCTYPE html> <html> <head> <style> #demo { tab-size: 12; } </style> </head> <body> <h1>The tab-size Property</h1> <pre id = "demo"> This is demo text. </pre> </body> </html>
广告