diff options
author | Andrew <andrew@andrewyu.org> | 2023-04-30 20:34:04 +0800 |
---|---|---|
committer | Automatic Merge <andrew+automerge@andrewyu.org> | 2023-07-15 00:30:47 +0800 |
commit | a95557b7443d8bb11da14c43533947397f000582 (patch) | |
tree | d0f85ea65a60d233c3fd99cfe78a213ee7aabf48 | |
parent | ac64deebc167fe3402aaaf8213a641fed3703dbb (diff) | |
download | www-a95557b7443d8bb11da14c43533947397f000582.tar.gz |
Table style change for pronouns page
-rwxr-xr-x | note/pronouns.html | 16 | ||||
-rwxr-xr-x | plain.css | 12 |
2 files changed, 19 insertions, 9 deletions
diff --git a/note/pronouns.html b/note/pronouns.html index 404e794..8f5b124 100755 --- a/note/pronouns.html +++ b/note/pronouns.html @@ -16,32 +16,32 @@ </p> <table> <tr> - <th>Form</th> - <th>English</th> - <th>中文</th> + <td>Form</td> + <td>English</td> + <td>中文</td> </tr> <tr> - <th>Nominative</th> + <td>Nominative</td> <td>They</td> <td>他</td> </tr> <tr> - <th>Accusative</th> + <td>Accusative</td> <td>Them</td> <td>他</td> </tr> <tr> - <th>Prenominal possessive</th> + <td>Prenominal possessive</td> <td>Their</td> <td>他的</td> </tr> <tr> - <th>Prenominal possessive</th> + <td>Prenominal possessive</td> <td>Theirs</td> <td>他的</td> </tr> <tr> - <th>Reflexive</th> + <td>Reflexive</td> <td>Themself</td> <td>他自己</td> </tr> diff --git a/plain.css b/plain.css index 2e98765..0223335 100755 --- a/plain.css +++ b/plain.css @@ -19,5 +19,15 @@ a.active {color: #00A000;} #nav li {display: inline; margin-right: 1em;} iframe { - border: 1px black solid; + border: 1px solid; +} + +table { + border: 1px solid; + border-collapse: collapse; +} + +table td { + border: 1px solid; + text-align: left; } |