JSFiddle - React, Tailwind, and code Playground

by cr0wn3r

HTML

<div id="body">
I am the body
</div>

CSS

body {
    margin-top: 100px;
    height:100%;
    width: 100%;
    
    background-image: url('http://cr0wn3r.s3-website-us-east-1.amazonaws.com/puzzle.jpeg');
    background-position: 0px 50px;
    background-repeat: repeat-x;
}

JavaScript

pos = $("body").css('background-position');
console.log(pos);