● P.268 「9 リストの表示を整えます」
* 誤:
~~~
aside ul {
list-style-type: none;
padding: 0;
}
~~~
* 正:
~~~
aside ul {
list-style-type: none;
padding: 0;
text-align: left;
}
~~~
●P.285 「背景画像の繰り返しのスタイル」
○ 左上(繰り返しなし)
* 誤: background-repeat: none;
* 正: background-repeat: no-repeat;
○ 左下(ボックスに収まるように画像の間にスペースを入れて繰り返し)
* 誤: background-repeat: none;
* 正: background-repeat: space;
○ 右下(ボックスに収まるように画像の横幅と高さを変えて繰り返し)
* 誤: background-repeat: repeat-x;
* 正: background-repeat: round;
●P.292の8の解説
* 誤: <td>のwidthプロパティを……
* 正: <th>のwidthプロパティを……