0
後我有輸入字段是必需的,有些不是。我想定位佔位符屬性,然後使用:after僞類將星號添加到文本的末尾以將字段標記爲必需的。佔位符屬性與:
下面我針對的佔位符和僞類
CSS::-webkit-input-placeholder:after {
content: '*';
color: darkred;
font-size: 1.5rem;
}
這工作得很好,但我不能與所需的類來實現了。
HTML<input type="text" class="require" placeholder="Last Name" id="last-name"/>
CSS
input.require > ::-webkit-input-placeholder:after {
content: '*';
color: darkred;
font-size: 1.5rem;
}
我有點失落,以我將如何選擇這兩個要求類:僞下課。任何幫助將非常感激。
在此先感謝您的幫助!
你明白了!我發誓我以爲我試過了! – fauverism