内のテキストの配置をカスタマイズできます。タグ。次の値で動作します。
ただし、このプロパティは HTML 5 ではサポートされていません。
2.背景
スタイルタグのbackgroundプロパティを使用して、行の背景を設定できます。同じ例を以下で見てみましょう。
コード:
<!DOCTYPE html>
<html>
<head>
<title>This is a table example</title>
<style>
th, td {
padding : 10px;
border : 1px solid #666;
}
</style>
</head>
<body>
<table style=" width:80%; margin : 30px auto; border-collapse : collapse;">
<tr>
<th> Sr. No. </th>
<th> Popular programming languages </th>
<th> Description </th>
</tr>
<tr style="background : #00ff3787"> // here we are setting the back ground color to #00ff3787
<td> 1 </td>
<td> Java </td>
<td> Java has been holding position 1 or 2 for the world’s most popular languages since it’s inception. It was created in mid 90s and since then many large and small companies have adopted it for developing desktop and web applications</td>
</tr>
<tr>
<td> 2</td>
<td> C </td>
<td>C is a popular language for cars, sensors and embedded systems. It has been one of the top most popular languages mainly due to its universal compatibility</td>
</tr>
<tr>
<td>3</td>
<td>Python</td>
<td>Python is very popular in today’s era specially since it support quick development of application based on machine learning, big data and AI.</td>
</tr>
</table>
</body>
</html>
上記のコードの出力は、ブラウザ ウィンドウでは次のようになります。最初の行の背景色が緑色に変わります。
3.カラー
tr タグの color プロパティを使用して、矢印内のテキストの色を操作できます。いずれかの行のフォントの色をグレーに変更しましょう。
コード:
<!DOCTYPE html>
<html>
<head>
<title>This is an example of HTML table</title>
<style>
th, td {
padding : 10px;
border : 1px solid #666;
}
</style>
</head>
<body>
<table style=" width:80%; margin : 30px auto; border-collapse : collapse;">
<tr>
<th> Sr. No. </th>
<th> Popular programming languages in 2019 </th>
<th> Description </th>
</tr>
<tr style="color : grey"> // here we are setting the font color to grey
<td> 1 </td>
<td> Java </td>
<td> Java has been holding position 1 or 2 for the world’s most popular languages since it’s inception. It was created in mid 90s and since then many large and small companies have adopted it for developing desktop and web applications</td>
</tr>
<tr>
<td> 2</td>
<td> C </td>
<td>C is a popular language for cars, sensors and embedded systems. It has been one of the top most popular languages mainly due to its universal compatibility</td>
</tr>
<tr>
<td>3</td>
<td>Python</td>
<td>Python is very popular in today’s era specially since it support quick development of application based on machine learning, big data and AI.</td>
</tr>
</table>
</body>
</html>
ブラウザ ウィンドウでの上記のコードの出力は次のようになります。ここで、フォントの色がテーブルの最初の行に適用されていることがわかります。
結論
上で見たように、HTML の table 要素と tr 要素を使用して構造化データを定義および表現できます。同じテーブル内の異なる行をカスタマイズして、行のスタイルを変更できます。 th と td を使用してテーブル ヘッダーと標準テーブル データを定義することもできます。行のフォントの色、フォント サイズ、フォント ファミリー、フォントの装飾、背景色をさらにカスタマイズできます。