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来显示文本

相关文章:

  • 2021-11-27
  • 2021-12-19
  • 2021-11-26
  • 2021-09-17
猜你喜欢
  • 2021-07-19
  • 2021-09-05
  • 2021-07-25
  • 2021-06-03
  • 2021-05-16
  • 2021-05-05
  • 2021-10-21
相关资源
相似解决方案