aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2019-01-07-useful-css.org
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-06-23 15:20:07 -0500
committerChristian Cleberg <[email protected]>2025-06-23 15:20:07 -0500
commite6a61a6b88c50f80d8d8ba10e8f8d3f19531b1ca (patch)
treec5fbcdebea6b6b389f4bf677355df3107fd7a1fe /content/blog/2019-01-07-useful-css.org
parentc9715768e01108f7e74ffab01aa368f8adfc3f15 (diff)
downloadcleberg.net-e6a61a6b88c50f80d8d8ba10e8f8d3f19531b1ca.tar.gz
cleberg.net-e6a61a6b88c50f80d8d8ba10e8f8d3f19531b1ca.tar.bz2
cleberg.net-e6a61a6b88c50f80d8d8ba10e8f8d3f19531b1ca.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