gpt4 book ai didi

html - 逐渐减小嵌套节点的字体大小

转载 作者:行者123 更新时间:2023-11-28 10:45:47 27 4
gpt4 key购买 nike

对于缩进,margin-left 很好地与自身堆叠:

div div {
margin-left: 10px;

}
<div>
This is the main text. And below is something indented:
<div>
This is indented div with 10px margin
<div>
and this div get's another 10px, 20px total
</div>
</div>
</div>

但是我想以类似的方式减少字体大小:

Small, smaller and smallest font

像这样的伪代码?

div div {
font-size: -=3pt;
}

这是真的吗?

最佳答案

你可以使用类似的东西

div { font-size: 85%; }

这将使字体每级减小 15%。

如果你真的想要比父节点少 3pt,你可以这样做:

div { font-size: calc(100% - 3pt); }

但我不推荐它,因为您很快就会接近 0pt。 Browser support for calc .

关于html - 逐渐减小嵌套节点的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27959579/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com