JSFiddle - React, Tailwind, and code Playground

by thecoz21

HTML

<!doctype html>
<html>
    <head>
    </head>
    <body>
        <div></div>
    </body>
</html>

CSS

div{
    width: 400px; height: 200px; padding: 30px; border: 10px dashed black;
   
    background-image:     url(http://sandropaganotti.com/wp-content/goodies/courses/CorsoCSS3/assets/sun.gif),
                          url(http://sandropaganotti.com/wp-content/goodies/courses/CorsoCSS3/assets/blue_sky.jpg);                      
    background-repeat:    no-repeat, no-repeat;
    background-position:  center center, center center;
    background-size:      250%, cover;
    background-clip:      content-box, border-box;
    background-origin:   border-box;
}