Hey there, I'm working on creating a timeline and I'd like to have a line intersecting each year similar to this example. My tech stack includes tailwind CSS and next.js.
Although I've written some code, I can't seem to get the line centered. Here's what I have so far:
<div className="relative flex-col items-center justify-center">
<span className="text-gray-400">2022</span>
<div className=" h-20 border-l border-gray-400" />
<span className="text-gray-400">2021</span>
</div>
I would really appreciate any assistance with this. Thank you!