<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font: "courier new";
}
body {
width: 100%;
height: 100vh;
}
.container {
background-color: gray;
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
padding: 1px;
}
textarea {
--margin: 1px;
width: 100%;
height: calc(100% - (var(--margin) * 2));
outline: none;
resize: none;
background-color: antiquewhite;
margin: var(--margin);
padding: 5px;
border: none;
}
</style>
</head>
<body>
<div class="container">
<textarea id="editor"></textarea>
<textarea id="previewer"></textarea>
</div>
<script type="text/javascript">
window.onload = (event) => {
// console.log(event)
main()
}
function main() {
const editor = document.getElementById("editor")
const previewer = document.getElementById("previewer")
editor.oninput = (event) => {
console.log(event)
previewer.value = editor.value
}
}
</script>
</body>
</html>
HTML & CSS - 两个 textarea 在父容器中左右对称布局
最新推荐文章于 2023-12-26 18:52:29 发布
这个博客展示了如何使用HTML和JavaScript创建一个实时编辑器,当用户在编辑区域输入时,预览区域会立即同步显示内容。通过简单的CSS样式确保了编辑和预览的界面布局。此示例着重于前端开发中的实时文本处理和用户交互功能。
摘要由CSDN通过智能技术生成