I have an element
<div class="Test_then">The result is ...</div>
The Test_then
class looks like this:
.Test_then::before {
content: 'Then';
}
My goal is to have the (The result is ...
) appear below the Then
content added by the Test_then
class. So in other words in would render like this:
Then
The result is ...