Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/01/2012, 07:43
suncubus
 
Fecha de Ingreso: diciembre-2007
Mensajes: 140
Antigüedad: 17 años
Puntos: 0
focus contenteditable compatible

Código HTML:
Ver original
  1. article{
  2.         height:130px;
  3.         overflow:hidden;
  4.         transition:height 2s;
  5.         -webkit-transition:height 2s;
  6.         -ms-transition:height 2s;
  7.         -op-transition:height 2s;
  8.         -moz-transition:height 2s;
  9.     }
  10. article:focus{
  11.         height:280px;
  12.         outline:none;
  13. }
  14.  
  15. <article contenteditable="true">
  16.                                 <h3 contenteditable="false">titulo</h3>
  17.                                 <img src="img/quien.gif" width="800" height="100" contenteditable="false"/>
  18.                                 <p contenteditable="false">un texto cualquiera</p>
  19.  
  20.                             </article>

En chrome me funciona estupendamente.
En Firefox y ie, el contenido de la p y la imagen siguen siendo editables, los puedo borrar, mover...
Alguién sabe como corregir esto? como puedo hacer para que no se pueda modificar nada y me haga el focus?