Posts

Showing posts from April, 2015

Padding does not effect to total width of block, css3 makes its easy

Hello , Use this css3 new feature for remove the effect of padding on width of any block. Add this line in starting of your code and this will remove padding effect from total width of block. * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;} Its a box-sizing property of css3. Thanks

How we remove default border radius in iphone from css

Hello All, Solution: Please add this line in your css code textarea, select, input[type="text"], input[type="button"], input[type="submit"], input[type="number"], input[type="email"] {      -webkit-appearance: none;      border-radius: 0; } Thanks Ankit

solution for supports html5 tags in IE 8 or earlier

Hello All, Please include these lines in your head tag for support HTML5 tags in IE 8 browser. <!--Ie 8 or earlier supports--> <script type="text/javascript">  document.createElement('header');  document.createElement('nav');  document.createElement('menu');  document.createElement('section');  document.createElement('article');  document.createElement('aside');  document.createElement('footer'); </script> <!--Ie 8 or earlier supports--> Thanks CSS Zilla

Script for fixed header menu on top of the screen

Hello All, Please use this  script for fix header on top. <!--Css Zilla Script for header fixed---> <script type="text/javascript">     $(window).scroll(function () {       if ( $(this).scrollTop() > 186 && !$('.header_fixed').hasClass('open') ) {         $('.header_fixed').addClass('open');         $('.header_fixed').slideDown();        } else if ( $(this).scrollTop() <= 186 ) {         $('.header_fixed').removeClass('open');         $('.header_fixed').slideUp();       }     });         </script> Live Example on http://paulbennetts.co/ 

Basic knowledge of INTERPRETER OR COMPILER

Hello, guys..Emraan is here.                                        Now i wanna tell you  Difference between interpreter and compiler.   Interpreter Read your CODE BY LINE BY LINE...it  Work slow And the other Hand compiler Read your ALL CODE at same time  ..its work so fast. but the fact is                     HTML  does not based on  ANY kind of COMPILER OR INTERPRETER...Because HTML is a tag based language.  HTML is Scripting language. thanks.....

Defination of HTML

Hello friends, its Emraan here now i wann tell  you the Defination of Html..   HTML is a code based language. Its full form is "HYPER TEXT MARKUP LANGUAGE ". HTML is a case sensitive language. HTML is a language but never used any INTERPRETER  OR COMPILER. thanks.........