| 1 | <?xml version="1.0" encoding="UTF-8"?> |
1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v 1.59 2006/04/10 09:11:20 neysx Exp $ --> |
2 | <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/xml-guide.xml,v 1.60 2006/04/10 09:15:44 neysx Exp $ --> |
| 3 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
3 | <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> |
| 4 | |
4 | |
| 5 | <guide link="/doc/en/xml-guide.xml"> |
5 | <guide link="/doc/en/xml-guide.xml"> |
| 6 | <title>Gentoo XML Guide</title> |
6 | <title>Gentoo XML Guide</title> |
| 7 | |
7 | |
| … | |
… | |
| 30 | |
30 | |
| 31 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
31 | <!-- The content of this document is licensed under the CC-BY-SA license --> |
| 32 | <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> |
32 | <!-- See http://creativecommons.org/licenses/by-sa/2.5 --> |
| 33 | <license/> |
33 | <license/> |
| 34 | |
34 | |
| 35 | <version>4</version> |
35 | <version>5</version> |
| 36 | <date>2006-04-09</date> |
36 | <date>2006-04-10</date> |
| 37 | |
37 | |
| 38 | <chapter> |
38 | <chapter> |
| 39 | <title>Guide basics</title> |
39 | <title>Guide basics</title> |
| 40 | <section> |
40 | <section> |
| 41 | <title>Guide XML design goals</title> |
41 | <title>Guide XML design goals</title> |
| … | |
… | |
| 534 | -- there's no requirement that <c><th></c> elements appear only in the |
534 | -- there's no requirement that <c><th></c> elements appear only in the |
| 535 | first row. |
535 | first row. |
| 536 | </p> |
536 | </p> |
| 537 | |
537 | |
| 538 | <p> |
538 | <p> |
| 539 | Besides, the table header tag (<c><th></c>) accepts the <c>colspan</c> |
539 | Besides, both table headers (<c><th></c>) and table items |
| 540 | and <c>rowspan</c> attributes to span titles across rows, columns or both as |
540 | (<c><ti></c>) accept the <c>colspan</c> and <c>rowspan</c> attributes to |
| 541 | shown below: |
541 | span their content across rows, columns or both as shown below: |
| 542 | </p> |
542 | </p> |
| 543 | |
543 | |
| 544 | <table> |
544 | <table> |
| 545 | <tr> |
545 | <tr> |
| 546 | <th colspan="4">This title spans 4 columns</th> |
546 | <th colspan="4">This title spans 4 columns</th> |