
What Are CSS Preprocessors? CSS preprocessors take code written in the preprocessed language and then it converts that code into the same old CSS. The popular CSS preprocessors are Sass, LESS, and Stylus. CSS3 preprocessors are languages written for the sole purpose of adding cool, inventive features to CSS...

What are Plug-ins? In computing, a plug-in is a software component that adds a specific feature to an existing computer program. When a program supports plug-ins, it enables customization. The common examples are the plug-ins used in web browsers to add new features such as search-engines, virus scanners, or...

In this blog we will be looking into 3D transformation. 3D transformation is different from 2D as we can move our elements not only with respect to X and Y axis but also Z-axis. The 3D transformation methods are: ⦁ translate3d(x,y,z) ⦁ scaleX(x), scaleY(y), scaleZ(z) ⦁ rotateX(angle), rotateY(angle), rotateZ(angle)...

CSS3 2D transforms are used to re-change the element structure as translate, rotate, scale, and skew 2D transformation methods: translate() rotate() scale() skewX() skewY() matrix() Now lets look into how to rotate a div 30 degrees by using rotate() method. 1. The rotate() method rotates an element clockwise or...

Front-end web development, also known as client-side development is the practice of producing HTML, CSS and JavaScript for a website or web application so that a user can see and interact with them directly. (src: Wikipedia) Before getting into Interview preparation we will have a look at skills required...