JSFiddle - React, Tailwind, and code Playground
by TheDiamondDoge
HTML
<div id="thinLinesInFirefox"></div>
CSS
body {
background-color: red;
}
#thinLinesInFirefox {
width: 200px;
height: 200px;
margin-top: 50px;
margin-left: 50px;
background-color: #396E97;
transform:rotate(4deg); /* Chrome and Safari */
transform:rotate(4deg); /* Firefox */
/* When the 4 sides are different there are cracks in border. */
border-top: 105px;
border-right: 110px;
border-bottom: 115px;
border-left: 120px;
border-color: black;
border-style: solid;
border-right-color: rgb(1,1,1);
border-left-color: rgb(1,1,1);
}