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

It's width becomes half the body element's widthIt becomes half the size of its contentIt becomes half of the body element's height<html> <head><style>button { width: 50%; }</style></head> <body> <button>Start</button> </body> </html>]]>

It's width becomes half the body element's width.