HTML TABLE REVIEW 본문

Programming/웹 개발

HTML TABLE REVIEW

쩡호 2018. 1. 11. 15:00

Let's review what you've learned so far:

  1. The <table> element creates a table.
  2. The <tr> element adds rows to a table.
  3. To add data to a row, you can use the <td> element.
  4. Table headings clarify the meaning of data. Headings are added with the <th> element.
  5. Table data can span columns using the colspanattribute.
  6. Table data can span rows using the rowspan attribute.
  7. Tables can be split into three main sections: a head, a body, and a footer.
  8. A table's head is created with the <thead> element.
  9. A table's body is created with the <tbody> element.
  10. A table's footer is created with the <tfoot> element.
  11. All the CSS properties you learned about in this course can be applied to tables and their data.

Congratulations on completing HTML Tables!

'Programming > 웹 개발' 카테고리의 다른 글

서브라임 단축키 (필요한 것만 계속 추가)  (0) 2018.01.12
CSS Visual Rules  (0) 2018.01.12
CSS Selectors Review  (0) 2018.01.12
CSS Layout Review  (0) 2018.01.12
HTML Tag Review  (0) 2018.01.11
Comments