JSFiddle - React, Tailwind, and code Playground

by Usermane

HTML

<table>
  <tr>
    <td class="caption">Новости города</td>
    <td class="dots"></td>
    <td class="caption">стр.1</td>
  </tr>
  <tr>
    <td class="caption">Новости города</td>
    <td class="dots"></td>
    <td class="caption">стр.2</td>
  </tr>
</table>

CSS

table {
  width: 100%;
}
.caption {
  width: 1%;
  white-space: nowrap;
}
.dots {
  border-bottom: 1px dotted #000;
}