JSFiddle - React, Tailwind, and code Playground

by Artem Pryanishnikov

HTML

<div class="tableservise">
<table>
<tbody>
<tr>
<td class="xl65" width="193" height="24"><strong>Населенный пункт</strong></td>
<td class="xl66" width="220"><strong>Название организации</strong></td>
<td class="xl67" width="325"><strong>Фактический адрес</strong></td>
<td class="xl68" width="156"><strong>Телефон</strong></td>
</tr>
<tr>
<td class="xl69" height="35">Владивосток</td>
<td class="xl70">ООО "Элемент-Сервис"</td>
<td class="xl75" width="325">690105, г. Владивосток, ул. Русская, 94 А,          офис 301</td>
<td class="xl75" width="156">8 (423) 2590-02-15; 8 (423) 265-23-13</td>
</tr>
<tr>
<td class="xl69" height="35">Находка</td>
<td class="xl70">ООО «Влатис»</td>
<td class="xl70">692903, г. Находка,Ул. Северная, 6А </td>
<td class="xl75" width="156">8 (4236) 62-17-43; 8 (800) 350-21-86</td>
</tr>
<tr>
<td class="xl72" height="21">Хабаровск</td>
<td class="xl70">ООО Технический центр"ТРИВИ"</td>
<td class="xl70">680042, г. Хабаровск, ул. Воронежская,129,</td>
<td class="xl70">8 (4212) 76-14-19</td>
</tr>
<tr>
<td class="xl73" height="35">Хабаровск</td>
<td class="xl70">ООО «Беллатрикс»</td>
<td class="xl70">680021, г. Хабаровск, Ул. Промышленная д 3</td>
<td class="xl75" width="156">8 (4212) 24-44-92; 8 (800) 350-21-86</td>
</tr>
<tr>
<td class="xl76" width="193" height="35">Комсомольск-на Амуре</td>
<td class="xl70">ООО «Беллатрикс»</td>
<td class="xl75" width="325">681000, г. Комсомольск-на-Амуре,                         ул. Красногвардейская, 18</td>
<td class="xl75" width="156">8 (8421) 733-15-40; 8 (800) 350-21-86</td>
</tr>
<tr>
<td class="xl69" height="21">Биробиджан</td>
<td class="xl70">ООО "ЦТО "Бира-Сервис"</td>
<td class="xl70">679000, г. Биробиджан, ул. Ленина, д. 39а</td>
<td class="xl70">8 (42622) 4-02-36</td>
</tr>
<tr>
<td class="xl69" height="52">Благовещенск</td>
<td class="xl70">ООО "Мега-Сервис"</td>
<td class="xl75" width="325">675000, Амурская обл., г. Благовещенск,            пер. Святителя Иннокентия, д. 13 каб. 101</td>
<td...

CSS

.tableservise
{
  width:1600px;
  height:2000px;
}
.tableservise table{
  border: 1px black;
  margin:auto;
  width:1200px;
  border-collapse:collapse;
}
.tableservise th, td {border:2px solid black;}
.tableservise th, td {padding:10px 12px 13px 14px;}
.tableservise th, td, table {text-align:center;}