<div class="parent" >
<div class="child" contenteditable>:)</div>
</div>
.parent {
display: grid;
place-items: center;
background: lightblue;
width: 300px;
height: 300px;
resize: both;
overflow: auto;
}
.child {
// etc.
padding: 0.5rem;
border-radius: 10px;
border: 1px solid red;
background: lightpink;
font-size: 2rem;
text-align: center;
}
body {
font-family: system-ui, serif;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.