html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="row">
<div class="cell red">
<p>First</p>
</div>
<div class="cell blue">
<p>Second</p>
</div>
<div class="cell red">
<p>Third</p>
</div>
<div class="cell blue">
<p>Fourth</p>
</div>
</div>
</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
16
17
18
.row {
width: 100%;
display:table;
}
.cell {
width: 25%;
display: table-cell;
}
.red {
background-color: indianred;
color: white;
}
.blue {
background-color: darkblue;
color: white;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run