Guest User

Untitled

a guest
Oct 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Editable Demo</title>
  7. <style>
  8. table {
  9. width: 300px;
  10. height: 300px;
  11. background: orange;
  12. margin: 70px auto;
  13. border-radius: 150px;
  14. text-align: center;
  15. }
  16. td {
  17. height: 100%;
  18. font: 26px sans;
  19. vertical-align: middle;
  20. padding: 40px;
  21. }
  22. </style>
  23. </head>
  24.  
  25. <body>
  26. <table><tr>
  27. <td contenteditable>Click to edit...</td>
  28. </tr></table>
  29. </body>
  30.  
  31. </html>
Add Comment
Please, Sign In to add comment