How to capitalize letters using CSS

For capitalizing all letters by using the CSS, you need to use the ‘text transform’ property. This particular property will allow the user to make the characters capitalize, uppercase and lowercase. By definition, the property of text transformation actually controls […]

Read Article

The Case For CSS Sprites

Lots of techniques are available for CSS to achieve a particular result. It does mean that we can achieve the same result by applying different types of techniques. However, CSS sprites is one of the techniques developers use.

This […]

Read Article

Using CSS with PHP Tutorial

Using CSS with PHP
PHP is a server side language and CSS and PHP do not interact with each other. Though you can output CSS to interact with your HTML, using PHP. Using CSS with PHP is even more simple that […]

Read Article

Using Box-sizing border-box CSS

Box-sizing in CSS tells the browser how to size the width and height and what to set them too. By default the width and height properties are set to content-box in CSS. Setting the box-sizing to border-box tells the browser […]

Read Article