text-indent百分比值与数值对比实例实例页面
展示
CSS世界
CSS世界
补充:Chrome 72改变了百分比计算策略
代码
-
HTML:
<h2 class="test1">CSS世界</h2> <h2 class="test2">CSS世界</h2>
-
CSS:
h2 { margin: 1em auto; width: 120px; outline: 1px solid; } .test1 { text-indent: -120px; } .test2 { text-indent: -100%; }