直接上代码
<!DOCTYPE <html>
<head>
<title></title>
<style type="text/css">
.input{
width:200px;
height:30px;
border:1px solid grey;
}
.placeholderDiv:empty::before{
color:lightgrey;
content:attr(placeholder);
}
</style>
</head>
<body>
<div class="placeholderDiv" contenteditable placeholder="请输入文字"></div>
</body>
</html>
效果图:
网友评论