You can edit / change the code and click run button
x
 
1
<!doctype html>
2
<html lang="en">
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
5
<title>add demo</title>
6
<style>
7
div {
8
width: 60px;
9
height: 60px;
10
margin: 10px;
11
float: left;
12
}
13
p {
14
clear: left;
15
font-weight: bold;
16
font-size: 16px;
17
color: white;
18
margin: 0 10px;
19
padding: 2px;
20
}
21
</style>
22
<script src="../../../jquery-1.10.2.js"></script>
23
<script>var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101319977);</script><script async src="//static.getclicky.com/js"></script></head>
24
<body>
25
<div></div>
26
<div></div>
27
<div></div>
28
<div></div>
29
<div></div>
30
<div></div>
31
<p>See the boxes clearly!!!!</p>
32
<script>
33
$( "div" ).css( "border", "2px solid red" )
34
.add( "p" )
35
.css( "background", "green" );
36
</script>
37
</body>
38
</html>
39