When looking at most sites (including SO), most of them use:

<input type="button" />

instead of:

<button></button>
  • What are the main differences between the two, if any?
  • Are there valid reasons to use one instead of the other?
  • Are there valid reasons to use combine them?
  • Does using <button> come with compatibility issues, seeing it is not very widely used?
link|improve this question

Frig, I posted that comment on the wrong question... xP – MiffTheFox May 6 '10 at 0:54
Button has a lot of issues, as listed here: stackoverflow.com/questions/1903453/… – Tchalvak Dec 3 '11 at 15:50
feedback

7 Answers

up vote 76 down vote accepted
  • Here's a page describing the differences (basically you can put html into a <button></button>)
  • And an other page describing why people avoid <button></button> (Hint: IE6)

Also, an other IE problem to consider:

And while we're talking about IE, it's got a couple of bugs related to the width of buttons. It'll mysteriously add extra padding when you're trying to add styles, meaning you have to add a tiny hack to get things under control.

link|improve this answer
what was the other IE problem your 3rd link was supposed to go to (its a dead link now)? – pylonicon Jul 30 '10 at 7:29
2  
@J3M 7OR3: It's quoted just below the link, in the grey box. – DrJokepu Jul 30 '10 at 9:33
3  
The last link is broken :-( – Casebash Oct 5 '11 at 0:53
feedback

This article seems to offer a pretty good overview of the difference.

From the page:

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.

The Button Element - W3C

link|improve this answer
+1 Great article. Thanks. – Alan Jan 22 '09 at 13:33
feedback

Quote

Important: If you use the button element in an HTML form, different browsers will submit different values. Internet Explorer will submit the text between the <button> and </button> tags, while other browsers will submit the content of the value attribute. Use the input element to create buttons in an HTML form.

From : http://www.w3schools.com/tags/tag_button.asp

If I understand correctly, the answer is compatibility and input consistency from browser to browser

link|improve this answer
Please use correct formatting for quotes. stackoverflow.com/editing-help – Gumbo Jan 22 '09 at 13:20
1  
be careful as w3schools is not known for its accuracy: w3fools.com – Hawken Apr 15 at 18:38
@Hawken That page was written by idiots who thought W3Schools pretended to be W3C. In reality, W3Schools is no better or worse than thousands of other sites that handle this kind of material. – Mr Lister Apr 16 at 9:36
actually, it depends on the version of IE and the IE mode - w3schools updated the info since the quote – Damien May 3 at 13:53
feedback

Quoting the Forms Page in the HTML manual:

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.

link|improve this answer
feedback

Inside a element you can put content, like text or images.

<button type="button">Click Me!</button> 

This is the difference between this element and buttons created with the element.

Tip: Always specify the type attribute for a <button> element. Different browsers may use different default types for the <button> element.

link|improve this answer
feedback

Just as a side note, <button> will implicitly submit, which can cause problems if you want to use a button in a form without it submitting. Thus, another reason to use <input type="button">

link|improve this answer
feedback

Use button from input element if you want to create button in a form. And use button tag if you want to create button for an action.

link|improve this answer
Why should you use a button tag outside of a form? – Caltor Feb 20 at 13:23
1  
For client side scripting. <input type="button"> has no function in HTML. – iGEL Mar 3 at 13:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.