JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

HTML

<div class="information" id="information">1 этаж:<br>Каб. 1<br>Каб. 2<br> Каб. 3<br> Каб. 4<br> Каб. 5<br>2 этаж:<br>Каб. 6<br>Каб. 7<br>Каб. 8<br>Каб. 9<br>3 этаж:<br>Каб. 10<br>Каб. 11<br>Каб. 12<br>Каб. 13</div>

CSS

.information {
    width: 40vw;
    height: 30vw;
    background-color: white;
    border-radius: 30px;
    position:absolute;
    top:25%;
    left:30%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2vw;
}