html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<table border="1" style=border-color:#FFFDD0>
<thead bgcolor=#CCFFCC>
<th class="padright padleft padtop padbottom">Hello Hi Wow</th>
<th>Wow amazing</th>
</thead>
<tbody bgcolor=#FFFDD0>
<tr>
<ul>
<td class="padleft padright padbottom padtop">This dont work.
</td>
<td><li class="left">Bla Bla<span style="background-color:#E6E6FA">Bla WOW </span></li></td>
</ul>
</tr>
</tbody>
</table>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.padleft{
padding-left:20px;
}
.padright{
padding-right:20px;
}
.padtop{
padding-top:20px;
}
.padbottom{
padding-bottom:20px;
}
.left{
padding:0px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run