JSFiddle - React, Tailwind, and code Playground

by Pankaj Kargirwar

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
  <title>Full-width Notification</title>
</head>
<body>

<section class="section">
  <div class="container">
    <div class="notification is-primary is-fullwidth">
      <button class="delete"></button>
      This is a full-width notification.
    </div>
  </div>
</section>

</body>
</html>