Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなテーブルを作成しようとしています.3つの結合されたセルを作成するために、2行と2列が「スパン」されています。
どうすればいいですか?
これを行うための基本的な考え方は次のとおりです。colspanこれを行うにはプロパティを指定できます。
colspan
<table width="100%"> <tr> <td style="background-color:green"></td> <td style="background-color:Red"></td></tr> <tr> <td style="background-color:green" colspan="2"></td></tr> </table>