Events - 3 Divs - Random colors

by alekskorovin

HTML

<div class="el1">
    <div class="el2">
        <div class="el3"></div>
    </div>
</div>

CSS

.el1 {
        position:relative;
        background-color: red;
        width: 400px;
        height: 400px;
    }
    .el2 {
        position:absolute;
        top: 50px;
        left: 50px;
        background-color: green;
        width: 300px;
        height: 300px;
    }
    .el3 {
        position:absolute;
        top: 50px;
        left: 50px;
        background-color: blue;
        width: 200px;
        height: 200px;
    }

JavaScript

var colors = [
    'red',
    'green',
    'blue',
    'yellow',
    'magenta',
    'pink'
];