HTML CSS examples for CSS Widget:Div Table
Remove Resize handles and border of div with contentEditable and size style
<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>