See the gap in the paragraph? relative positioning doesn't change the normal flow. Other elements act like it's still there.

<html> <head> <style>p { background-color: #edbaa6; } strong { position: relative; top: 30px; }</style> </head> <body> <p>He <strong>dropped</strong> the mic.</p> </body> </html>]]>