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
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div>
<p>default</p>
<button>button</button>
</div>
<hr/>
<div class="button2">
<p>button {
border: 20px outset grey;
}</p>
<button>button</button>
</div>
<hr/>
<div class="button3">
<p>:active {
border: 20px inset grey;
}</p>
<button>button</button>
</div>
<hr/>
</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
19
20
21
body {
}
button{
width: 50vw;
height:24vh;
box-sizing: border-box;
}
.button2 button{
border: 20px outset grey;
}
.button3 button{
border: 20px outset grey;
}
.button3 button:active{
border: 20px inset grey;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run