Spacebar does not work in button
element when i use the HTML5 contenteditable
. But its working perfect in div
element. How can i get it to working? can someone help me?
Please check it here: https://jsfiddle.net/Issact/f6jc5th4/
HTML:
<div contenteditable="true">
This is editable and the spacebar does work in "Div" for the white-space
</div>
<button contenteditable="true">
This is editable and the spacebar does not work in "button" for the white-space
</button>
CSS:
div {
background-color:black;
padding:20px;
color:#fff;
}
button {
background-color:green;
padding:20px;
color:#fff;
}