Featured
-
Creating Horizontal Menu Bar Using Html and CSS
Hello readers, If you want to create a horizonta
by nitish.rawat -
Custom checkbox using jquery
Hello Reader ! Here is an example how to make
by mukul.kant -
How to make Sticky navigation
Hello Readers ! Below is an example of sticky n
by mukul.kant -
Smoke Font Animation
Hello Friends, The following codes below is an an
by kushal.kant -
How to Make A Simple DropDown in HTML With The Help of Jquery and CSS
You Can Use Below Code to Make A Simple Drop D
by indresh.kumar
Tags
Control Attributes in HTML5
There are certain attributes that add up in HTML5 which makes the form attributes much more interactive and validation free.
There are certain example for control attribute:
1. Read only - This will make the input type in read only mode.
E...
How to change the color of placeholder ?
Here I am posting that how to change the color of placeholder.
you can use the code below.
::-webkit-input-placeholder { color: red; }
:-moz-placeholder { /* Firefox 18- */ color: red; }
::-moz-placeholder { /* Firefox 19+
*/ ...
Changing Placeholder Color
WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element: ex- ::-webkit-input-placeholder.
Mozilla Firefox 4 to 18 is using a pseudo-class: :-moz-placeholder (one colon). ex- :-moz-placeholder
Mozilla F...
Animating Placeholder
Making Animated Placeholder
To make a Placeholder animation we need to make custom placeholder, for this I have used span tag.
HTML -
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">...