What happens when we set this paragraph's width to 50%?

It becomes half of the body element's sizeIt becomes half the size of its content<html> <head><style>p { width: 50%; background-color: antiquewhite; }</style></head> <body> <p>Half-baked Stories blog</p> </body> </html>]]>

It becomes half of the body element's size.