表单 – 在表单的占位符中添加span

前端之家收集整理的这篇文章主要介绍了表单 – 在表单的占位符中添加span前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的表格占位符中添加一个颜色asterix,这可能吗?

解决方法

这是纯css解决方案IE10
.input-placeholder {
  position: relative;
}
.input-placeholder input {
  padding: 10px;
  font-size: 25px;
}
.input-placeholder input:valid + .placeholder {
  display: none;
}

.placeholder {
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  height: 25px;
  font-size: 25px;
  left: 10px;
  margin: auto;
  color: #ccc;
}

.placeholder span {
  color: red;
}
<form novalidate>
    <div class="input-placeholder">
        <input type="text" required>
        <div class="placeholder">
            Email <span>*</span>
        </div>
    </div>
    <input type="submit">
</form>
原文链接:https://www.f2er.com/html/226244.html

猜你在找的HTML相关文章