開発環境
- OS X Yosemite - Apple (OS)
- Safari, Firefox + Firebug, Google Chrome(Webプラウザ、プラグイン)
- BBEdit - Bare Bones Software, Inc. (GUI) , Emacs (CUI) (Text Editor)
- HTML (マークアップ言語)
- Cascading Style Sheets(CSS) (スタイルシート)
Head First HTML and CSS (Elisabeth Robson (著)、 Eric Freeman (著)、O'Reilly Media)のChapter 13(Tables and More Lists: Getting Tabular)、A SERIOUS EXERCISE(No. 9477)を解いてみる。
A SERIOUS EXERCISE(No. 9477)
HTML (BBEdit, Emacs)
<style>
#test_table {
margin-left: 20px;
margin-right: 20px;
border: thin solid black;
border-spacing: 0px;
caption-side: top;
}
#test_table th, td{
border: thin dotted gray;
padding: 5px;
}
.test_center {
text-align: center;
}
.test_right {
text-align: right;
}
#test_table th {
background-color: #cc6600;
}
#test_table tr:nth-child(odd) {
background-color: #fcba7a;
}
/* .test_cellcolor { */
/* background-color: #fcba7a; */
/* } */
</style>
<table id="test_table">
<caption>caption</caption>
<tr>
<th>City</th>
<th>Date</th>
<th>Temperature</th>
<th>Altitude</th>
<th>Population</th>
<th>Diner Rating</th>
</tr>
<tr>
<td>Bountiful, UT</td>
<td class="test_center">July 10th</td>
<td class="test_center">91</td>
<td class="test_right">4,226 ft</td>
<td class="test_right">41,173</td>
<td class="test_center">4/5</td>
</tr>
<tr>
<td>Last Chance, CO</td>
<td class="test_center">July 23rd</td>
<td class="test_center">102</td>
<td class="test_right">4,780 ft</td>
<td class="test_right">265</td>
<td class="test_center">3/5</td>
</tr>
<tr>
<td>Truth or Consequences, NM</td>
<td class="test_center">August 9th</td>
<td class="test_center">93</td>
<td class="test_right">4,242 ft</td>
<td class="test_right">7,289</td>
<td class="test_center">5/5</td>
</tr>
<tr>
<td>Why, AZ</td>
<td class="test_center">August 18th</td>
<td class="test_center">104</td>
<td class="test_right">860 ft</td>
<td class="test_right">480</td>
<td class="test_center">3/5</td>
</tr>
</table>
City | Date | Temperature | Altitude | Population | Diner Rating |
---|---|---|---|---|---|
Bountiful, UT | July 10th | 91 | 4,226 ft | 41,173 | 4/5 |
Last Chance, CO | July 23rd | 102 | 4,780 ft | 265 | 3/5 |
Truth or Consequences, NM | August 9th | 93 | 4,242 ft | 7,289 | 5/5 |
Why, AZ | August 18th | 104 | 860 ft | 480 | 3/5 |
0 コメント:
コメントを投稿