Following statement never changed the background color of div,
<div id="msg" contenteditable="false" style=" background-color: aqua;"></div>
While if I set contenteditable="true" then it works,
<div id="msg" contenteditable="true" style=" background-color: aqua;"></div>
How can I style contenteditable="false" ?