JSFiddle - React, Tailwind, and code Playground

by Ramana Yalla

HTML

<div></div>

CSS

html,body{
    width:100%;
}
div{
    background:red;
    height:100px;
}

JavaScript

$(document).ready(function(){
    var myWidth = 100/7+"%";    
    $('div').width(myWidth)
})