DEV Community

Cover image for Some Code Tricks Every Web Developer Should Know
Shyam1806
Shyam1806

Posted on • Updated on

Some Code Tricks Every Web Developer Should Know

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)