gpt4 book ai didi

css - 使用 css 更改输入字段内的字体大小

转载 作者:行者123 更新时间:2023-12-02 17:05:46 25 4
gpt4 key购买 nike

html{
font-size:62.5%;
}

body{
font-family:arial;
font-size:1.1rem;
}
<p>LOREM IPSUM</p>
<p>LOREM IPSUM</p>

<input type = 'text' value = 'LOREM IPSUM'>

为什么 font-size:1.1rem 在输入字段中不起作用?

如何获取整个页面的全局字体大小?

最佳答案

这是因为 input 已经有用户代理定义的 font-size 不像 p 元素所以 p 元素将继承 body 定义的值,input 将使用其自己的值,除非您覆盖它:

enter image description here

因此输入元素将具有 font-size 的计算值,如下所示:

enter image description here

如您所见,主体的字体被认为是默认字体,但它已被默认定义的字体覆盖。

关于css - 使用 css 更改输入字段内的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51809139/

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