I am writing a very easy code of making a text blinking using only HTML and CSS3. You can adjust the values, setting a different blinking speed and colors.
Developers Map
Discy Latest Questions
The HTML5 has an input fields that contains color. Just write “color” in your type attribute of your input field. see below example <!DOCTYPE html> <html> <body> <h2>Color Picker</h2> <p>The <strong>input type="color"</strong> is used for input fields that should contain a color.</p> <p>Depending on browser support:<br>A color ...
There is a way, but it is webkit-only. However, when you combine this with line-height: X;, and max-height: X*N;, it will also work in other browsers, just without ellipses.
Parallax is a 3d effect used in various websites to make webpages attractive . In this effect, as we scroll, the background of the webpages moves at different speed than the foreground making it look effective. example website :
Using the CSS :before title you can create an simple dash before anything you want. .dash {background: #333 none repeat scroll 0 0;float: left;height: 2px;margin-right: 5px;margin-top: 10px;width: 15px;} CSS : HTML : Output: