HTML CSS examples for CSS:Quiz
Set the padding of the div to "25px".
<!DOCTYPE html> <html> <head> <style> div {<!-- w w w. j a va2 s.com--> background-color: pink; width: 200px; padding: 25px; } </style> </head> <body> <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div> </body> </html>