The CSS selector to select n-th child element inside an another parent element would look something like this. Let’s say you want to target the 5th p tag inside a div with the class post-content div.post-content …
Category: CSS
Simple post to demonstrate how you can divide your container, page or a div into two columns / parts using TailwindCSS. Make your div into grid and use grid-col-2 to divide it into two parts. <div …
At times when you are working with Asynchronous Ajax calls, you want to show a loading spinner on the center of the div which notifies the user that the API call is still in progress. Let …