Membuat Background di HTML
Backgound di html
HTML Background
HTML Background dibagi menjadi dua :
1.HTML Background dengan color/warna.2.HTML Background dengan image/gambar.
1.HTML Background dengan color/warna.2.HTML Background dengan image/gambar.
HTML Background dengan warna
Misalkan kita memiliki kita ingin memberikan background warna pada elemen tabel :
<table>
<tr>
<td width="100" height="100">
</td>
</tr>
</table>
Maka kita tambahkan attribut bgcolor="red" pada tag seperti berikut :
<table bgcolor="red">
<tr>
<td width="100" height="100">
</td>
</tr>
</table>
Dengan CSS :Kita tambahkan style="background-color:red" pada tag pembuka table.
<table style="background-color:red">
<tr>
<td width="100" height="100">
</td>
</tr>
</table>
<tr>
<td width="100" height="100">
</td>
</tr>
</table>
HTML Background Image
Kita tetap akan menggunakan kode seperti di atas.
Tanpa CSS
Kita tambahkah dalam tag <table> denganbackground:"http://codingku.com/html/img/pattern.gif"
<table background="http://codingku.com/html/img/pattern.gif">
<tr>
<td width="100" height="100">
</td>
</tr>
</table>