Membuat Table dengan CSS dan tag DIV

css table div

css table div

Selain menggunakan HTML tag <table>, Anda juga dapat membuat table dengan menggunakan tag <div> dan CSS.

CSS menyediakan atribut display:table untuk menampilkan element HTML berbentuk table.

Berikut ini coding selengkapnya:

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;CSS Table Div&lt;/title&gt;
&lt;style&gt;
html,body{font:14px arial,verdana,san-serif;}
.container{
    display:table;
    width:400px;
    border-collapse:collapse;
	margin:0 auto;
	line-height:25px;
}
.table-row:hover{background-color:#99ccff;}
.heading{
    font-weight:bold;
    display:table-row;
    background-color:#C91622;
    text-align:center;
    line-height:35px;
    color:#ffffff;
}
.table-row{  
    display:table-row;
    text-align:center;
}
.strip{  
    display:table-row;
    text-align:center;
	background-color:#f0f0f0;
}
.col{ 
	display:table-cell;
 	border:1px solid #CCC;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;Membuat Table dengan CSS dan tag DIV&lt;/h1&gt;
&lt;hr/&gt;&lt;br/&gt;
&lt;div class=&quot;container&quot;&gt;
    &lt;div class=&quot;heading&quot;&gt;
		&lt;div class=&quot;col&quot;&gt;No.&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;Browser&lt;/div&gt;
    &lt;/div&gt;
	&lt;div class=&quot;table-row&quot;&gt;
		&lt;div class=&quot;col&quot;&gt;1&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;IE&lt;/div&gt;
    &lt;/div&gt;
	&lt;div class=&quot;table-row strip&quot;&gt;
        &lt;div class=&quot;col&quot;&gt;2&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;Firefox&lt;/div&gt;
    &lt;/div&gt;
	&lt;div class=&quot;table-row&quot;&gt;
        &lt;div class=&quot;col&quot;&gt;3&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;Chrome&lt;/div&gt;
    &lt;/div&gt;
	&lt;div class=&quot;table-row strip&quot;&gt;
        &lt;div class=&quot;col&quot;&gt;4&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;Opera&lt;/div&gt;
    &lt;/div&gt;
	&lt;div class=&quot;table-row&quot;&gt;
        &lt;div class=&quot;col&quot;&gt;5&lt;/div&gt;
		&lt;div class=&quot;col&quot;&gt;Safari&lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;

Silakan mencoba.

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *