※ ChatGPTを利用し、要約された質問です(原文:こういうtable)
tableでカレンダーを作る方法とは?
このQ&Aのポイント
tableを使ってカレンダーを作成する方法について教えてください。
tableを使ったカレンダーで一週間目が左寄せになる問題について、右寄せする方法を教えてください。
2006年6月のカレンダーを右寄せで作成する方法について教えてください。
カレンダーをtableで作りたいのですが
<table border="5" cellspacing="5" cellpadding="5">
<tr><th colspan="7">2006年 6月</th></tr>
<tr><th bgcolor="FF0000">日</th><th>月</th><th>火</th><th>水</th><th>木</th><th>金</th><th bgcolor="0000FF">土</td></tr>
<tr><th>1</th><td>2</td><th bgcolor="0000FF">3</td></tr>
<tr><th bgcolor="FF0000">4</th><td>5</td><td>6</td><td>7</td><td>8</td><td>9</td><th bgcolor="0000FF">10</td></tr>
<tr><th bgcolor="FF0000">11</th><td>12</td><td>13</td><td>14</td><td>15</td><td>16</td><th bgcolor="0000FF">17</td></tr>
<tr><th bgcolor="FF0000">18</th><td>19</td><td>20</td><td>21</td><td>22</td><td>23</td><th bgcolor="0000FF">24</td></tr>
<tr><th bgcolor="FF0000">25</th><td>26</td><td>27</td><td>28</td><td>29</td><td>30</td></tr>
</table>
と打ち込んだら
2006年6月
月 火 水 木 金 土 日
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30
と一週間目が左寄せになってしまいます。右寄せの方法を教えてください><