Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> div { box-sizing: border-box; width: 200px; padding: 20px; border: 5px solid black; } </style> </head> <body> <div>This div has a width of 200px, and the padding and border are included inside that width.</div> </body> </html>