HTML Element Style How to - Show images in a textarea, editable div








Question

We would like to know how to show images in a textarea, editable div.

Answer


<!--from   ww  w.  j  a va2  s  .  c  om-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  width: 300px;
  height: 200px;
  border: 1px solid #ccc;
}
</style>
</head>
<body>
  <div contentEditable="true">
    type here 
    <img src="http://www.java2s.com/style/download.png" />
  </div>
</body>
</html>

The code above is rendered as follows: