JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
  
    span {
      border: 2px dotted blue;
    }
    span:last-child {
      display: block;
     
    }
  </style>
</head>
<body>
 <div>
    <span>Span inline</span>
    <span>Span block</span>
 </div>
</body>
</html>