📝 代码查看
使用runcode.html页面

1
查看次数
2026-01-09
创建时间
2026-01-09
最后更新
<div class="parent" >
  <div class="child" contenteditable>:)</div>
</div>
.parent {
  display: grid;
  place-items: center;
  
  background: lightblue;
  width: 500px;
  height: 500px;
  
  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;
}
暂无JavaScript代码

👁️ 实时预览