html forms and a list of

Table attributes:

border: Borders

The spacing between the cell border with padding content: cellpadding

The distance between the outer margin of the cell with cells: cellspacing

align: its style table

width: width

height: height

bordercolor: Border Color

cols: columns vertical column of cut sheets

rows: horizontal cut line

 

The role of the table?

1, data storage

2, Page Layout

 

The following three semantic tags is very strong

thead table header

tbody table body

           1. relatively large proportion

           2. The browser loads priority tbody section

           3. The order presented nothing to do with the order code

tfoot: Defines a table footer (footnotes or tables Note)

 

List:

1, unordered list:

<ul>
    <li></li>
</ul>

2, ordered list:

<ol>  //order list
    <li></li>
</ol>

3, a custom list:

<dl>
    <dt></dt>  //dt:define title
    <dd></dd>  //dd:define description
</dl>

dt dd relationship with:

dd dt will be described in detail

Guess you like

Origin www.cnblogs.com/crazier/p/11563317.html