JSFiddle - React, Tailwind, and code Playground

by Laurent Dufour

HTML

<div class="actus">
  <img src="/img/danger.png" width="32">
  <p class="actus-text">Les différentes actualité en Ukraine <a href="">ici</a>.</p>
  <img src="/img/cross.png" width="26">
</div>

CSS

.actus{
  background-color: red;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.actus-text {
  flex: 1;
  text-align: center;
}