I've not known that there exist such a tag as until today,a little shocked!
+8
A:
Check this article
Buttons created with the BUTTON element function just like buttons created with the INPUT element, but they offer richer rendering possibilities: the BUTTON element may have content. For example, a BUTTON element that contains an image functions like and may resemble an INPUT element whose type is set to “image”, but the BUTTON element type allows content.
rahul
2009-09-09 10:57:40
+4
A:
Basically, <button>
is more flexible as it can contain other tags inside it. Like,
<button type="submit"><strong>Click</strong> me, <em>user!</em></button>
You won't be able to do this with regular <input>
.
n1313
2009-09-09 10:58:22
A:
You can include images in a <button>
tag, but not in an <input>
tag, amoung other differences
Rory
2009-09-09 10:59:57
Not true. `<input type="image" />`
JGB146
2010-07-23 20:49:21
You can include more than one image in a ``<button>``
Rory
2010-07-27 10:02:08