Skip to content

Instantly share code, notes, and snippets.

@xfwil
Created December 12, 2024 12:54
Show Gist options
  • Save xfwil/0b714b3b3f1e84cd5380c93f94892d07 to your computer and use it in GitHub Desktop.
Save xfwil/0b714b3b3f1e84cd5380c93f94892d07 to your computer and use it in GitHub Desktop.
TailwindCSS Center Easily
export default function Home() {
return (
<div className="md:container md:mx-auto px-4">
<div className="flex flex-col items-center justify-center h-screen">
<h1 className="text-4xl font-bold">Hello World</h1>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment