Posted by Frisky Design on August 4, 2010 ·
CSS is a very simple and easy yet powerful but the difficult part is to make the layout displayed similar in all browsers. Lets discuss some easy but useful CSS tips and tricks that will help you to complete some tasks quickly.
CSS Group Selector
CSS group selector is a very useful practise that will minimize the coding and will help you to avoid repeating declarations.
h1, h2, h3, h4, h5, h6 {
font-family:arial;
margin:0.5em [...]
Posted by Frisky Design on July 31, 2010 ·
Probably you have already seen some websites using methods to increase the text size as per user requirements. However, the images may not be resided as they should. This is a bit tricky and can be done using css tricks. The technique is not resizing the image itself, rather using a large image and hide most of it while showing medium size texts and reveal the whole image when the text size increases. [...]