Dave’s Brain
Home
Search
Browse
Recent
Keywords
Other sites
Feedback
Sign in
Random
Crawlers
Programming Tips
- Why isn't my button looking like a button?
Date:
2017oct19
Language:
html
Q.
Why isn't my <button> looking like a button?
A.
You probably need to add type=button
<button
type
=
'button'
>
Click me
</button>
RIGHT
<button>
Click me
</button>
WRONG