CSS Padding
<!DOCTYPE html> <html> <head> <style> .alert { padding-top: 12px; padding-right: 20px; padding-bottom: 12px; padding-left: 20px; } </style> </head> <body> <div class="alert">Your changes have been saved.</div> </body> </html>
<!DOCTYPE html> <html> <head> <style> .alert { padding-top: 12px; padding-right: 20px; padding-bottom: 12px; padding-left: 20px; } </style> </head> <body> <div class="alert">Your changes have been saved.</div> </body> </html>