24 H5内容可否编辑contenteditable属性
语法
contenteditable="true"
示例
<head>
<meta charset="UTF-8">
<title>04_H5内容可否编辑contenteditable属性</title>
<style>
.warp{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 200px;
height: 200px;
background-color: #BBFFAA;
font: 20px/200px "微软雅黑";
text-align: center;
}
</style>
</head>
<body>
<div class="warp" contenteditable="true">
Hello
</div>
</body>
效果