我写了一个php脚本,其中包含php代码,html和javascript,并包含表单和表格以及div标签。我想在整个表单,表格或标签中将字体设置为Arial并将其大小设置为3。 即使在选择框选项条目和文本框中(每当用户输入一个值时,它应该是Arial和大小为3)。
**只有我想在某些地方才将字体大小覆盖到不同的地方。
如何在html和php网页以及用户输入字段的任何地方将字体更改为Arial,将大小更改为3。
谢谢。
答案 0 :(得分:0)
像这样使用:
<style>
*{
font-size:3px;
font-family: arial;
}
</style>
如果此样式被其他样式覆盖,则可以将其用作!important
您可以在项目的.css
文件中使用它,或将其包含在<style></style>
答案 1 :(得分:0)
如果您使用外部css,则在该文件中编写样式代码,如下所示:
html, body, div, table, h1, h2, h3, h4, h5, h6, p, a, img, label, footer, header, span, pre, iframe /* write any other tag that you are using in your page */
{
font-size: 3px;
font-family: arial;
//any other style that you want
}