DONT ADD ANYTHING HERE!

Outer display type of inline
  1. The box will not break onto a new line
  2. The width and height properties will not apply
  3. Top and bottom padding, margins, and borders will apply but will not cause other inline boxes to move away from the box
  4. Left and right padding, margins, and borders will apply and will cause other inline boxes to move away from the box

Example

Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam recusandae harum quasi natus. Illo, molestias voluptatibus. Eligendi illo minus error. hello this is me I am here

CSS

.myclass {
    border: 2px solid var(--primary-green);
    padding-top: 30px;
    padding-left: 100px;
    margin-left: 100px;
}
                    

HTML

<div class="content">
    Lorem ipsum …
    hello this is me <span class="myclass">I am here</span>
</div>

References