JSON CSS Cascading Demonstration

Note how syntactical cascading is demonstrated in the JSON.

This is the left div.
This is the right div.

JSON CSS

{
    "#wrapper": {
        "border": "1px solid black",
        "margin": "2em",
        "padding": "2em",
        "width": "50em",
        
        "div.left": {
            "float": "left",
            "border": "1px solid red",
            "color": "blue",
            "width": "20em"
        },
        
        "div.right": {
            "margin-left": "25em",
            "border": "1px solid green",
            "width": "20em"
        }
    }
}