JSFiddle - React, Tailwind, and code Playground
by Cath_kb
HTML
<div class="b">один</div>
<div class="b">два</div>
<div class="b">три</div>
<br><br>
<span class="b">один</span>
<span class="b">два</span>
<span class="b">три</span>
<br><br>
<a href="" class="b">один</a>
<a href="" class="b">два</a>
<a href="" class="b">три</a>
CSS
.b{
float: left;
padding: 0;
margin: 0 5px 0 0;
outline: 1px solid red;
}
.b:first-letter{
text-transform: uppercase;
}
.b:before {
content: 'итак... ';
}