From 6c0819acdf2efd042203d21848f34c653c659cd6 Mon Sep 17 00:00:00 2001 From: DavidNachman <41246572+DavidNachman@users.noreply.github.com> Date: Thu, 14 Mar 2019 23:56:31 -0700 Subject: [PATCH] line break text (#31878) additional information about line breaks added. --- .../index.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md b/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md index 11bb34994b9..c5e3fbedced 100644 --- a/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md +++ b/guide/english/html/tutorials/how-to-insert-spaces-or-tabs-in-text-using-html-and-css/index.md @@ -4,7 +4,7 @@ title: How to Insert Spaces or Tabs in Text Using HTML and CSS ## How to Insert Spaces or Tabs in Text Using HTML and CSS There are a multitude of ways to insert spaces using html. For simplicity sake we will -go over one of these, which are by inserting a Span tag. +go over a couple of these. ## Span Tag @@ -35,8 +35,15 @@ For example You can also give the ```` some inline-style properties, as shown below. ``

Hello my name is James

`` + +## Line Break Tag + +``
`` + +Line Break Tags ``
`` are self closing tags meaning they do not need a ``
``. +A Line Break Tag is generally used when a Line Break without a new paragraph is needed. -## Using Non-Breaking Space +## Non-Breaking Space A non-breaking space is a space that will not break into a new line using ** **;. @@ -47,5 +54,3 @@ For example ## More Information For more information on the tag or on; How to Insert Spaces or Tabs in Text Using HTML and CSS, you can visit w3schools. https://www.w3schools.com/tags/tag_span.asp - -