<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="application/xhtml+xml; charset=UTF-8" />
<title>test</title>
<style type="text/css">
table#test {
width:500px;
border:1px red solid;
}
table#test td {
padding: 3px;
background-color: #E4E5E5;
}
table#test td.special {
padding: 10px;
background-color: red;
}
</style>
</head>
<body>
<table id="test">
<tr>
<td>1</td><td>2</td>
</tr>
<tr>
<td>3</td><td>4</td>
</tr>
<tr>
<td>5</td><td class="special">6</td>
</tr>
</table>
</body>
</html>