我正在创建一个像文本字段这样的素材,除了我禁用输入字段时它才有效。当聚焦场时,如果文本框中的任何输入应该保持在光标上方,则标签会上升到光标之上。当我禁用文本框时,即使框中有文本(See the fiddle),标签也会返回其原始位置。
这是我正在做的事情:
.txt-group label {
font-size: 18px;
font-weight: normal;
position: absolute;
pointer-events: none;
left: 10px;
top: 10px;
transition: all 0.2s ease-in-out;
color: #999999;
}
.txt-group input:focus ~ label,
.txt-group input:valid ~ label,
.txt-group input:valid:disabled ~ label {
top: -8px;
font-size: 14px;
}