Why does HTML think “chucknorris” is a color?

Why does HTML think “chucknorris” is a color? Any unknown digit in a HTML color code are treated as zero so using invalid characters in a color code shows different value. Missing or incorrect digits […]
Why does HTML think “chucknorris” is a color? Any unknown digit in a HTML color code are treated as zero so using invalid characters in a color code shows different value. Missing or incorrect digits […]
Image sprite is a collection of images put into a single image depends on particular position of a image. Basically CSS sprites are used for faster loading of your site. Read our previous article about […]
Using both @import and link tag you can include style sheet in a webpage. But there is a difference. For performance “link” has a much better advantage. Example of @import and link: <link href=”style.css” type=”text/css” […]
Reset.CSS is used to normalize browser’s default styles that resets the styling of all HTML elements to a consistent baseline. Every browser has its own default ‘user agent’ stylesheet which use unstyled websites appear more […]
Using !important rules can be a dangerous way to style your webpage that usually means you are forcefully doing this, but they exist for some reason. The paragraph will be colored red, even there is […]
For a float based layout the common problem is that the container doesn’t stretch up. Try Clearing floats. For example if you want to add floats then using command the browsers it stretch up the […]
Creativity does not belongs by born. So using CSS pretty much anything that can be done using your feelings. Make your interest in depth and you will be easily drawn to the next big thing. […]
It is very essential to remember when using CSS to website that you need to maintain some types of tricks which is very helpful. CSS tricks: 1) Don’t fix the font size: You do not […]
By using html forms we get input data from the user. For example regstration form, contact us feedback etc. Html forms are enclosed between form element like below: <form> </form> There are numerous form fields […]