Just for Quick copy past
1 |
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> |
Full Stack LAMP, MEAN, DevOps Consultant
Just for Quick copy past
1 |
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> |
Below snippets will set the opacity of the elements and its children.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
selector { // IE 8 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // IE 5-7 filter: alpha(opacity=50); // Mozilla 1.6 and older -moz-opacity: 0.5; //Safari 1.x -khtml-opacity: 0.5; //latest browsers opacity: 0.5; } |
When the size of web page increases, it’s better to have a button to scroll to the top of the page with a single click. How to add Smooth scrolling: Blow simple js script will allow your visitors to smooth scroll […]