考點:html
答案:bash
<!DOCTYPE html>
<head>
<title>div模擬textarea</title>
<style>
.editdiv{
border:1px solid #a0b3d6;
width: 500px;
min-height: 200px;
font-size: 14px;
padding: 4px;
color: #333;
outline:0; /* 解決聚焦邊框 */
}
/* 添加placeholder屬性 */
.editdiv:empty::before{
content:attr(placeholder);
color: #999;
}
</style>
</head>
<body>
<div class="editdiv" contenteditable="true" placeholder="請輸入內容..."></div>
</body>
</html>複製代碼