este código de abajo funciona y lo encontré en este portal
pero he tratado de codificarlo para que se adapte a css
y no he podido
alguien tiene un ejemplo por ahí donde pueda hacer un editor de texto con css
Código PHP:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script> function formatText(cmd){ document.execCommand(cmd, null, null); } function insertarImagen(){ var u; if(!(u=prompt('ingresar url','http://')))return; document.getElementById('pp').focus(); document.execCommand("InsertImage",false,u); } </script> </head> <body> <form action="" method="get"> <input name="input" type="button" onclick="formatText('bold')" value="NEGRITA" /> <input name="input" type="button" onclick="formatText('italic')" value="CURSIVA" /> <input name="input" type="button" onclick="formatText('underline')" value="SUBRAYADO" /> <input name="input" type="button" onclick="insertarImagen()" value="INSERTAR IMAGEN" /> </form> <div id="pp" contenteditable="true">Este es un texto editable</div> </body> </html>