From 3ad0b913da192161b895b3c5011e7dd4dc9a1c01 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Thu, 11 Aug 2022 15:34:53 -0700 Subject: [PATCH] :memo: Made notation of html space symbols --- html_notes.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/html_notes.txt b/html_notes.txt index f242b1bf..a34f6481 100644 --- a/html_notes.txt +++ b/html_notes.txt @@ -21,3 +21,14 @@ html #while doing the same with #id*2 will create
+ +Sometimes the spacing on html pages is thrown off, or you'll change the wording in an already styled element, and it's only off by a space or two. to generate spaces, you can't simply type spaces, you'll have to use html space symbols: + + + & Nbsp; Blank box with half-width continuous rows (recommended) + & Ensp; halfwidth Space + & Amp; emsp; fullwidth Space + +Example:

 Actual Text

+ +This will add a halfwidth space behind the "Actual Text" in the paragraph tag.