caret-color-first-line

by li yanlong

HTML

<h2>first-line</h2>
<input class="form-control" type="text" />

CSS

.form-control {
    color: #05d380; /* 光标颜色 */
}

.form-control::first-line {
    color: #333; /* 文本颜色 */
}

JavaScript

/*
 不支持 textare 多行机制
*/