Contenteditable Attribute
This attribute allows you to make an element editable by the user like a text input.
<div contenteditable="true">
Hello User.
</div>
Placeholder Color
You can use the ::placeholder psuedo-element to style the placeholder text in an input field allowing you to customize the look
input::placeholder{
color:"#fff;
}
Top comments (0)