css对div contenteditable的placeholder的效果

.rich{
    color:#000;
    width:100px;
    height:100px;
}
.rich:empty:before{
    content: attr(data-placeholder);
    color:#bbb;
}
.rich:focus:before{
    content:none;
}

你可能感兴趣的:(css对div contenteditable的placeholder的效果)