为什么编辑字体大小会出现这样的问题?

时间:2010-11-23 20:51:46

标签: html font-size

我无法让它变得更大我尝试了几个html变种......我想要它很大......我知道这是基本的但是我尝试了一些东西

http://www.drillavailable.neighborrow.com/

<div style="text-align: center;"><br><br><br><br><br><br>
<font size="100">NO:(</font>
<br><br>no one within 3 miles of your location has listed their drill yet, be 
<a href="http://u.neighborrow.com/items/create/">the first!</a><br></div>

5 个答案:

答案 0 :(得分:5)

使用CSS:

<span style="font-size: 100px">NO:(</span>

font标签尺寸属性的编号是别名,因此受限制:
http://www.w3.org/TR/CSS2/fonts.html#propdef-font-size

  

可能的值是:
  [xx-小| x-small |小|中|大| x-large | xx-large]

17的哪张地图。

答案 1 :(得分:2)

根据W3c,字体大小说明符只能在1-7之间。您可以尝试添加style="font-size:100px;"并使用像素。

http://www.w3schools.com/tags/att_font_size.asp以供参考

答案 2 :(得分:2)

<font size="100">NO:(</font>替换为<span style="font-size:100pt;">NO:(</span>

答案 3 :(得分:2)

<div style="text-align:center;">
    <span style="font-size:100pt;display:block">NO!</span>
    no one within 3 miles of your location has listed their drill yet, be 
    <a href="http://u.neighborrow.com/items/create/">the first!</a>
</div>

预览@ jsfiddle

答案 4 :(得分:1)

<div>中,您可以添加style="font-size:100px"来更改该元素内部文字的字体大小。