Categories
Html5

Store objects in HTML5 localStorage

The localStorage property allows you to store objects in HTML5 that is more secure and can store large amounts of data locally. It’s essential sometimes having stored JavaScript object in HTML5 localStorage. But objects don’t seem to work? Let’s see. Basically, if you have a look for Apple, Mozilla and Microsoft documentation, you can find […]

Categories
Css3

HTML5 placeholder color with CSS

Want to change the color of a placeholder of your input fields? Here is an example that helps you to change the color of a placeholder. Basically, there are three different implementations i.e. pseudo-elements, pseudo-classes, and nothing. WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element: ::-webkit-input-placeholder. Mozilla Firefox 4 […]

Categories
Css Css3

6 Free online CSS sprite generator

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 CSS Image Sprites. There are few online CSS Sprite generator tool which is very handy to create sprites quickly. 1) […]

Categories
Css3

5 CSS tricks for responsive design

Making a website rather than mobile view is easy but now a days you must have to build the view on mobile also. You need to know some CSS tricks. Here are some CSS tricks which will help you to maintain responsive design: Word wrap is necessary to forcefully break the text into new line […]