实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css ex单位 实例 - 自学教程(runoops.com)</title> <style> div { font-size: 30px; border: 1px solid black; } span { font-size: 1ex; } </style> </head> <body> <div>div 的 font-size 设置为 20px。 <span>div 中的 span 元素 font-size 为 1ex</span>。</div> </body> </html>
运行结果: