美文网首页
给div设置placeholder

给div设置placeholder

作者: 李佳明先生 | 来源:发表于2018-07-21 19:55 被阅读0次

    直接上代码

    
    <!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>
    

    效果图:


    相关文章

      网友评论

          本文标题:给div设置placeholder

          本文链接:https://www.haomeiwen.com/subject/idckmftx.html