I am display two rows of text, I used </em>
since I want aligntext1 to have red color only.
<div>
<p> tesing12345678910 <em className="text-read-50">aligntext1</em>
<br/> tes123 <em className="text-read-50">aligntext2</em> </p>
</div>
How can I create something like this, making aligntext to be the same "column".
tesing12345678910 aligntext1
tes123 aligntext2
2
Answers
as jonas said. you can use table tag without border.
you can also omit the tag and move the CSS class to
<td>
if you just need to color the aligntext without making the text italic.You could do something like this
If you want to learn more about flex container, like how to add space between the columns and else, here is a link for docs