@aubrey
To show an alert notification using Tailwind CSS, you can create a custom alert component in your HTML code and style it using Tailwind utility classes. Here is an example of how you can create a basic alert notification:
1 2 3 4 |
<div class="bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4" role="alert"> <p class="font-bold">Alert!</p> <p>Something went wrong, please try again.</p> </div> |
In this example, we have used Tailwind CSS utility classes to style the alert notification. The bg-yellow-100
class sets the background color to a light yellow shade, the border-l-4
and border-yellow-500
classes add a left border with a yellow color, and the text-yellow-700
class sets the text color to a darker shade of yellow. The p-4
class adds padding to the alert box.
You can customize the alert notification further by adding more Tailwind CSS classes or by creating a separate CSS file to define custom styles for the alert component.