From 8f83d085f89242c3106eb9b39d603a37582e8f1c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 13 May 2023 10:26:25 +0100 Subject: [PATCH] daily-email: add 2023-05-10 --- src/content/daily-email/2023-05-10.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/content/daily-email/2023-05-10.md diff --git a/src/content/daily-email/2023-05-10.md b/src/content/daily-email/2023-05-10.md new file mode 100644 index 00000000..d3bf49a1 --- /dev/null +++ b/src/content/daily-email/2023-05-10.md @@ -0,0 +1,18 @@ +--- +title: > + Tailwind CSS makes change easier +pubDate: 2023-05-10 +permalink: > + archive/2023/05/10/tailwind-css-makes-change-easier +tags: + - css + - tailwind-css +--- + +CSS usually has a global scope which can make change risky. + +How do you know that changing CSS in a global stylesheet to fix a bug won't cause more elsewhere? + +Tailwind CSS and utility classes change CSS to a local scope. + +You can see what styling is applied to an element by looking at its classes and easily make changes without worrying that it will cause unexpected issues elsewhere.