aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2019-01-07-useful-css.org
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-06-23 15:20:07 -0500
committerChristian Cleberg <hello@cleberg.net>2025-06-23 15:20:07 -0500
commitf304d459c5278a135650296d2b1c407314d903fb (patch)
treec5fbcdebea6b6b389f4bf677355df3107fd7a1fe /content/blog/2019-01-07-useful-css.org
parent5c89edc7c3ef52910eeb0be9eafa1278f575ffe9 (diff)
downloadcleberg.net-f304d459c5278a135650296d2b1c407314d903fb.tar.gz
cleberg.net-f304d459c5278a135650296d2b1c407314d903fb.tar.bz2
cleberg.net-f304d459c5278a135650296d2b1c407314d903fb.zip
feat(blog): update blog post titles and fix character bugs
Diffstat (limited to 'content/blog/2019-01-07-useful-css.org')
-rw-r--r--content/blog/2019-01-07-useful-css.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/blog/2019-01-07-useful-css.org b/content/blog/2019-01-07-useful-css.org
index dc72b74..74a37c2 100644
--- a/content/blog/2019-01-07-useful-css.org
+++ b/content/blog/2019-01-07-useful-css.org
@@ -1,5 +1,5 @@
#+date: <2019-01-07 Mon 00:00:00>
-#+title: CSS Implementation Techniques for Structured Web Layouts
+#+title: Real‑World CSS Techniques: Flexbox, Shadows, and Variables
#+description: Practical guide on applying CSS rules and constructs such as flexbox, box shadows, and variable usage to achieve standard web styling and layout objectives.
#+slug: useful-css
#+filetags: :css:web-design:tips:
@@ -26,7 +26,7 @@ structure, where you can easily reuse CSS properties throughout the project.
You can use variables to define things, such as color palettes. Then, you can
use these colors for backgrounds anywhere else in the HTML. This could be
extended, where extra variables could be defined for =primary-text=,
-=quoted-text=, etc. Variables can also be used to define spacing (e.g. =32px= or
+=quoted-text=, etc. Variables can also be used to define spacing (e.g. =32px= or
=2rem=), which can then be applied to margins, padding, font sizes, and more.
For example, here are some variables defined at the root of the website, which