JSFiddle - React, Tailwind, and code Playground

by Christian Rouhault

HTML

<div class="banniere">C'est une bannière !</div>

CSS

.banniere {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 90%; /* valeur pour les navigateurs ne supportant pas calc() */
  width: calc(100% - 200px);
  border: solid black 1px;
  box-shadow: 1px 2px #000;
  background-color: orange;
  padding: 6px;
  text-align: center;
}