• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

292
Views
Why does insertBefore work weirdly with the span element?

I am trying to add a span element before a referenced span element. However, there seems to be no space between the new element and the referenced span element.

enter image description here

// Create a new, plain <span> element
let sp1 = document.createElement("span");

// Set class attribute and value
sp1.setAttribute("class", "new-element");

// Write content to element
sp1.innerText = "foo bar";
// Get the reference element
let sp2 = document.querySelector(".third-element");

// Get the parent element
let parentDiv = sp2.parentNode;

// Insert the new element into before sp2
parentDiv.insertBefore(sp1, sp2);
<div id="main-container">
    <span>foo bar</span>
    <span>foo bar</span>
    <span class="third-element">foo bar</span>
    <span>foo bar</span>
</div>

about 3 years ago · Juan Pablo Isaza
1 answers
Answer question

0

In your HTML, you have a line break after each span element which ends up being turned into a space character (technically not a space character, but the browser shows it to you this way). When you add a span with javascript, it gets inserted inline like this:

<span>new element</span><span>existing element</span>

When spans are inline with no line break, the browser does not render that magic space character. The easiest fix for this is to add some margin-right with CSS, or to just to append a space character to the text in your spans like so:

<span>This is my text </span>

about 3 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error