html - External style not picked by div element -
i relatively new css please let me know if there silly mistake on below. while trying out 1 of examples on w3cschools used below code <!doctype html> <html> <head> <style> div { background-color: lightgrey; width: 300px; border: 25px solid green; padding: 25px; margin: 25px; } </style> </head> <body> <h2>demonstrating box model</h2> <p>the css box model box wraps around every html element. consists of: borders, padding, margins, , actual content.</p> <div>this text actual content of box. have added 25px padding, 25px margin , 25px green border. ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div> </body...