HTMLタグ
HTMLのcenterタグは、テキストを中央揃えにするために使用されます。
注 :
ここで、HTMLでcenterタグを実装する例を見てみましょう-
例
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 2px solid blue; } </style> </head> <body> <table> <center>Table to calculate the budget</center> <caption>Expenses</caption> <tr> <th>Domains</th> <th>Cost</th> </tr> <tr> <td>Product Development</td> <td>500000</td> </tr> <tr> <td>Marketing</td> <td>500000</td> </tr> <tr> <td>Services</td> <td>100000</td> </tr> <tr> <td>Support</td> <td>100000</td> </tr> <tr> <td>Maintenance</td> <td>100000</td> </tr> <tr> <td colspan="2">Total Budget = INR 1300000</td> </tr> </table> </body> </html>
出力
-
HTML<th>colspan属性
要素のcolspan属性は、ヘッダーセルがまたがる列の数を設定するために使用されます。 以下は構文です- <th colspan="num"> 上記のnumは、ヘッダーセルがまたがる列の数です。 ここで、要素-のcolspan属性を実装する例を見てみましょう。 例 <!DOCTYPE html> <html> <head> <style> table, th, td { border: 2px solid green; } </style> </head> &
-
HTML<colgroup> タグ
タグは、テーブル内の1つまたは複数の列のグループです。すべての列のスタイルを設定します。 以下は、タグ-の属性です。 スパン −列グループがスパンする必要がある列の数はspan属性で設定されます 例 タグ-を実装する例を見てみましょう。 <!DOCTYPE html> <html> <head> <style> table, th, td { border: 2px solid black; } </style> </head&