HTML学习笔记2

  1. 使用<fieldset><legend>Title</legend><!--其它控件--><fieldset>的标签组合可以实现对页面空间的分组。
  2. 通过在<td></td>中插入<input type=”text”>对象可以实现类似Spreadsheet的功能。
  3. 若想在外部CSS文件中改变内部的样式,比如:

    <div style="font-size: 100px;">
    Epsum factorial non deposit quid pro quo hic escorol.
    </div>

    可通过下面方法在外部样式文件中对其进行修改:

    div[style] {
    font-size: 1.2em !important;  /*加上!important以提高其优先级*/
    }

  4. <label> 标签的for属性可以指定绑定到某个id的标签,主要是绑定双方的焦点,若不需要焦点,可不用label来显示文本

你可能感兴趣的:(html)