มีรูปแบบคือ border : border-width border-style border-top-color
ตัวอย่างการกำหนด border
<html>
<head>
<style type="text/css">
table
{
border:
5px solid black;
}
</style>
</head>
<body>
<table>
<tr><td>test</td></tr>
</table>
</body>
</html>
จากตัวอย่าง
เป็นการกำหนด border ให้หนา 5
px เส้นทึบ และเป็นสีดำ