Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> div { width: 50%; /* 50% of the parent element’s width */ height: 200px; /* Fixed height of 200px */ background-color: lightblue; } </style> </head> <body> <div>This div has a width of 50% and a height of 200px.</div> </body> </html>