|
|
|
ช่วยแนะนำการกำหนดสีเส้นแถวแบ่งตารางหน่อยครับ |
|
|
|
|
|
|
|
เอาโค้ดมาสิครับ
border : 1px solid #FFF;
หรือจะใส่ Style ให้มันแบบนี้ก็น่าจะได้
|
|
|
|
|
Date :
2015-05-26 09:55:07 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พยายามลองหาวิธีในเนตดูครับ
รันแล้วออกมาตามรูปครับ ตรงเส้นปิดขอบตารางเขียน style ไงครับ
Code style
<html>
<head>
<style type="text/css">
table.three{
width:60%;
border:0;
}
table.three th { font-weight:bold;
border-top:1px solid #CCC;
border-bottom:1px solid #CCC;
border-left:1px solid #CCC;
border-right:1px solid #CCC;
background-color:#F2F9FF ;
color:#0000CC;
}
table.three td { padding:5px;
border-bottom:1px ;
border-right:1px solid #CCC;
border-left:1px solid #CCC;
}
</style>
</head>
<body>
<table class="three" cellspacing="0">
<tr>
<th>IDCODE</th>
<th>Name
</td>
<th>Salary</th>
</tr>
<tr>
<td valign="bottom">01</td>
<td>Natt</td>
<td align="right">30,000</td>
</tr>
<tr>
<td>02</td>
<td>Non</td>
<td align="right">25,000</td>
</tr>
<tr>
<td>03</td>
<td>Kate</td>
<td align="right">25,000</td>
</tr>
<tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2015-05-26 10:15:55 |
By :
natt500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|