September 26, 2016


What is Gzip?
It's is a method of compressing files for faster transfers. It's also a file format. Compression allows your web server to provide smaller file sizes which load faster for your website users. Enabling this compression is a standard practice.
WHAT IS THE DIFFERENCES BETWEEN GRAPHIC DESIGN AND UX DESIGN

The answer is "User-focused vs pixel-focused"

 Usually Graphic designers tend to pursue pixel perfect in their designs. Ensuring that texts have perfect margin and font size confirm to brand guidelines. Now what UX designers think, however they primarily focused on users. They study the user interface between users and the product, finding ways to ensure that the product answers to the users key needs. And they do so by conducting a lot of research, creating user personas and stories.

5 Very Useful Tips of CSS Every Web Designer/Developer Should Know

(Don't use when using any framework like Bootstrap)
I have given good articles over the past year and thought it might be very helpful for the Designer/Developer both.

1. Reset your CSS

Reset your CSS before you start for your new project, it will be really helpful for the browser compatibility, something like this:
*
{
            margin:0px;
            padding:0px;  
}


2. Use Height  100% in CSS

Try to achieve this tag in your CSS that is 100% height.

3. Use Clear and Float: A Comparison of CSS Clearing Techniques

This is the fundamental basics of a Web page. Use these two techniques very smartly.

4. Avoid CSS Hacks

I know it can be very tricky but we should avoid hacks until it’s very badly required.

5. Avoid Absolute Positioning

Using absolute positioning does overlap whatever was in that position and takes no notice of other content at all.