JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  
  <style>
    div {
      background-image: url("http://placekitten.com/200/300");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: right top;
      height: 200px;
      width: 200px;
      border: 10px solid;
    }
  </style>
</head>
<body>
  <div>
  </div>
</body>
</html>