gpt4 book ai didi

CSS如何更改输入字体大小

转载 作者:行者123 更新时间:2023-11-28 15:46:23 25 4
gpt4 key购买 nike

input 标签的font-size 不会增加。我知道它遵循浏览器/操作系统设置规则,但它不应该被覆盖吗?

<style>
input[type="search"]
{
font-size:50px;
}
</style>
<form class="search-box" action="https://www.google.com/search">
<input type="search" name="q" placeholder=" welcome back" value="" autocomplete="off" autofocus>
</form>

结果

https://imgur.com/a/iegRUl3

最佳答案

Apple 做苹果的东西。 https://developer.mozilla.org/es/docs/Web/CSS/-moz-appearance

input[type=search]{
-moz-appearance: none;/* older firefox */
-webkit-appearance: none; /* safari, chrome, edge and ie mobile */
appearance: none; /* rest */
}

关于CSS如何更改输入字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53271870/

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