我使用在线HTML制作工具来获取此
<p><span style=\"font-family: arial, helvetica, sans-serif; font-size: x-large; color: #993300;\">A <strong>canyon</strong> is a deep, narrow valley with steep sides. Many canyons have rivers or streams running through them.</span></p>
但是字体太小了,当我在html制作工具中添加更大的尺寸并将其复制到我的代码时,它仍然显示相同的大小。我在Web视图中使用它来显示一些带有自定义格式的文本。
答案 0 :(得分:1)
您可以在font-size
属性中添加实际值,例如font-size:48px
。如果你输入的数字足够大,它应该比使用x-large
更大。
答案 1 :(得分:1)
为什么在引用之前你有“\”?不应该是:
<span style="font-family: arial, helvetica, sans-serif; font-size: x-large; color: #993300;">
答案 2 :(得分:0)
有两种方法可以解决这个问题。
第一种方法已弃用,因此您不应使用此方法:
<font size="5" face="arial" color="red">
HTML负责布局,因此包括设计和格式化都不好。
第二种方式是通过css进行操作:
h1 {font-size:250%}
您可以将px用于像素,而不是百分比。
祝你好运!