标签:font text ack The 浏览器 element and pre form
button
或者input
是不会默认继承样式的,尤其是font
,直观就能看出来了。根据SO的回答,因为浏览器会采用系统默认的样式来渲染大部分的表单元素,而且这个默认的样式文件还能找到。想深入了解的可以戳下方参考文档链接。
主动加上inherit
,并不是什么好方案,但是也没找到更好的。
.form-element {
font:inherit;
}
参考文档:
Why textarea and textfield not taking font-family and font-size from body?
Font-family is not inherited to the form input fields?
标签:font text ack The 浏览器 element and pre form
原文地址:https://www.cnblogs.com/xianshenglu/p/9026171.html