How to use ::before
circle for text in tailwind?
I have a text:
How to set red circle as ::before
with padding?
How to use ::before
circle for text in tailwind?
I have a text:
How to set red circle as ::before
with padding?
I'm not sure if this is the best way but take a look here
<script src="https://cdn.tailwindcss.com"></script>
<div class='h-screen w-screen p-4'>
<h1 class='before:inline-block before:w-3 before:h-3 before:mr-4
before:bg-red-500 before:rounded-full '>Hello</h1>
<div class="h-[400px] bg-red-400 w-[5px] ml-[3.5px] "></div>
</div>