Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Display Image inside button Element in HTML</title> <style> .image-btn{ background: none; border: none; padding: 0; } .image-btn img{ display: block; /* to remove extra space below image */ } </style> </head> <body> <button type="button" class="image-btn"> <img src="/examples/images/download-btn.png" width="250"> </button> </body> </html>