So for some reason i'm not able to create a broken line inside the paragraph such that I can get a new line... I'm using tailwind with react.
<p className="mt-3 text-base text-gray-300 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">
Transform the way you interact with your customers. Collect valuable, actionable and credible feedback.</p>
So I've tried all these solutions, but I get errors.
1.
<p className="mt-3 text-base text-gray-300 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">
Transform the way you interact with your customers. <br> Collect valuable, actionable and credible feedback.</p>
<p className="mt-3 text-base text-gray-300 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">
Transform the way you interact with your customers. <br> Collect valuable, actionable and credible feedback.</br> </p>
<p className="mt-3 text-base text-gray-300 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">
Transform the way you interact with your customers. {"\n"} Collect valuable, actionable and credible feedback.</p>
– coglialoro Mar 14 '22 at 10:16