html代码中的字体大小

时间:2010-10-07 12:16:53

标签: html font-size

  <html>
  <tr>
  <td style="padding-left: 5px;padding-bottom:3px; font size="35;""> <b>Datum:</b><br/>
                            November 2010 </td>
  </html>

我的代码是否正确?我想增加第一行的字体。不知道我是否必须把2英寸放在这里。它似乎不起作用。

9 个答案:

答案 0 :(得分:12)

试试这个:

<html>
  <table>
    <tr>
      <td style="padding-left: 5px;
                 padding-bottom: 3px;">
        <strong style="font-size: 35px;">Datum:</strong><br />
        November 2010 
      </td>
    </tr>
  </table>
</html>

请注意,我还包含了表标记,您似乎已经忘记了它。如果您希望将其显示为表格,则必须包括此内容。

答案 1 :(得分:9)

font-size:35px;

所以这样:

<html>
  <tr>
  <td style="padding-left:5px;padding-bottom:3px;"> 
    <strong style="font-size:35px;">Datum:</strong>
    <br/>
    November 2010 
  </td>
  </tr>
</html>

虽然内联样式是一种不好的做法,你应该对内容进行分类。另外,您应该使用<strong></strong>代码而不是<b></b>

答案 2 :(得分:2)

你不需要那些引号

<td style="padding-left: 5px;padding-bottom:3px; font-size: 35px;"> <b>Datum:</b><br/>
                        November 2010 </td>

答案 3 :(得分:1)

此处发布了几个答案,可以为您提供所需的文字效果,但是......

关于表的事情是它们是有组织的标签和数据集合。同时拥有一个标签(“Datum”)和它在同一个单元格中标记的值是非常错误的。标签应位于<th>元素中,<td>中的值位于同一行或同一列中(取决于您尝试实现的数据排列)。您可以让<th>个元素垂直或水平运行或两者都运行,但如果您没有标题单元格(这是<th>的意思),您没有表格,只需要一个无意义的文字网格。最好还有一个<caption>元素来标记整个表格(你不必显示标题,但它应该是可访问性的)并且有一个summary="blah blah blah"表标记中的属性,再次用于辅助功能。所以你的HTML应该看起来更像这样:

<html>
  <head>
    <title>Test page with Table<title>
    <style type="text/css">
      th {
        font-size: 35px;
        font-weight: bold;
        padding-left: 5px;
        padding-bottom: 3px;
      }
    </style>
  </head>
  <body>
    <table id="table_1" summary="This table has both labels and values">
      <caption>Table of Stuff</caption>
      <tr>
        <th>Datum</th>
        <td>November 2010</td>
      </tr>
    </table>
  </body>
</html>

这可能不是您想要的 - 很难说2010年11月是您发布的数据点还是标签,而且“Datum”在任何情况下都不是一个有用的标签。稍微玩一下,但要确保当你的表完成时它实际上有某种语义含义。如果它不是真正的数据表,那么不要使用<table>进行布局。

答案 4 :(得分:0)

不需要引用css属性,您应该指定一个单位。 (您也应该使用外部css文件..!)

答案 5 :(得分:0)

<html>        
    <table>
        <tr>
            <td style="padding-left: 5px;padding-bottom:3px; font-size:35px;"> <b>Datum:</b><br/>
            November 2010 </td>
    </table>
</html>

答案 6 :(得分:0)

以恰当的方式编写css属性,即:

font-size:35px;

答案 7 :(得分:-1)

我建议您使用CSS,似乎您稍后会重复这些行。但要回答你的问题:

<html>
  <head>
  <style type="text/css">
    td.randname {
        padding-left: 5px;
        padding-bottom:3px;
        font-size:35px;
    }
  </style>
  </head>
  <body>
  <table>
  <tr>
  <td class="randname"> <b>Datum:</b><br/>
                            November 2010 </td></tr>
                            </table>
  </body>
</html>

答案 8 :(得分:-2)

设置font-size的正确CSS是“font-size:35px”。即:

 <td style="padding-left: 5px; padding-bottom:3px; font size: 35px;">

请注意,这会设置字体大小(以像素为单位)。您也可以将其设置为* em * s或百分比。在此处了解有关CSS中字体的更多信息:http://www.w3schools.com/css/css_font.asp