JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test">Bold Text. Normal Text</div>
CSS
.test {
font-size:0;
}
.test:before {
font-size: 12px;
content: "Bold Text. ";
font-weight: bolder;
}
.test:after {
font-size: 12px;
content: "Normal Text";
}