<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bubbling (propagation of the event across the DOM) </title>
<style id="jsbin-css">
</style>
</head>
<body>
<div id = "big" class = "red">
<div id = "medium" class = "green">
<div id = "small" class = "blue">
</div>
</div>
</div>
</body>
</html>