What happens when we have a p element with very little text inside of it?

<html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <p>40% OFF</p> <strong>Only this week!</strong> </body> </html>]]>Since p is a block element it takes up the entire lineThe inline element below it appears on the same line

Since p is a block element it takes up the entire line.