diff --git a/core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php
index 61d0ee5..77cfafb 100644
--- a/core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php
+++ b/core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php
@@ -181,7 +181,7 @@ public function testEntityFormatter() {
 </div>
 ';
     $expected_rendered_body_field = '<div class="field field-entity-test--body field-name-body field-type-text field-label-above">
-      <div class="field-label">Body:&nbsp;</div>
+      <div class="field-label">Body</div>
     <div class="field-items">
           <div class="field-item"><p>Hello, world!</p></div>
       </div>
diff --git a/core/modules/system/css/system.theme.css b/core/modules/system/css/system.theme.css
index 4fca3de..88997ce 100644
--- a/core/modules/system/css/system.theme.css
+++ b/core/modules/system/css/system.theme.css
@@ -629,18 +629,18 @@ table tr.error {
 .field-label-inline .field-label,
 .field-label-inline .field-items {
   float:left; /*LTR*/
-  padding-right: 0.5em;
+  margin-right: 0.5em;
 }
 [dir="rtl"] .field-label-inline .field-label,
 [dir="rtl"] .field-label-inline .field-items {
   float: right;
-  padding-left: 0.5em;
+  margin-right: 0.5em;
+}
+.field-label-inline .field-label::after {
+  content: ':';
 }
 
 /* Form display */
-form .field-edit-link {
-  margin: 0 0.3em;
-}
 form .field-multiple-table {
   margin: 0;
 }
diff --git a/core/modules/system/templates/field.html.twig b/core/modules/system/templates/field.html.twig
index a0d527a..06b9c80 100644
--- a/core/modules/system/templates/field.html.twig
+++ b/core/modules/system/templates/field.html.twig
@@ -31,7 +31,7 @@
 #}
 <div{{ attributes }}>
   {% if not label_hidden %}
-    <div class="field-label"{{ title_attributes }}>{{ label }}:&nbsp;</div>
+    <div class="field-label"{{ title_attributes }}>{{ label }}</div>
   {% endif %}
   <div class="field-items"{{ content_attributes }}>
     {% for delta, item in items %}
diff --git a/core/themes/bartik/templates/field--taxonomy-term-reference.html.twig b/core/themes/bartik/templates/field--taxonomy-term-reference.html.twig
index fad1ed7..1a274e6 100644
--- a/core/themes/bartik/templates/field--taxonomy-term-reference.html.twig
+++ b/core/themes/bartik/templates/field--taxonomy-term-reference.html.twig
@@ -17,7 +17,7 @@
  */
 #}
 <div class="{{ attributes.class }} clearfix"{{ attributes|without('class') }}>
-  <h3{{ label_attributes }}>{{ label }}: </h3>
+  <h3{{ label_attributes }}>{{ label }}</h3>
   <ul class="links">
     {% for delta, item in items %}
       <li class="taxonomy-term-reference-{{ delta }}"{{ item_attributes[delta] }}>{{ item }}</li>
