Remove Resize handles and border of div with contentEditable and size style - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Div Table

Description

Remove Resize handles and border of div with contentEditable and size style

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from   w  w  w.j a va 2s  .c  o  m-->
 <body> 
  <div> 
   <div contenteditable="false" style="width:50%; height:50%; display:table"> 
    <div contenteditable="true" style="width:50%; height:50%; display:table-cell"> 
     <p>div1</p> 
    </div> 
   </div> 
   <div contenteditable="false" style="width:50%; height:50%; display:table"> 
    <div contenteditable="true" style="width:50%; height:50%; display:table-cell"> 
     <p>div2</p> 
    </div> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials