JSFiddle - React, Tailwind, and code Playground

by rus333

HTML

<h1>И вот тут какой-то ну очень длинный заголовок</h1>
<h2>Какой-то заголовок</h2>

CSS

h1, h2 {
	font: normal 150% Trebuchet MS;
	color: #252525;
	margin: 10px;
	position: relative;
    overflow:hidden;
}
h1:after, h2:after {
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #252525;
	position: absolute;
	bottom: 5px;
}