Understanding AngularJS Directve Properties Detail
RESTRICT— This property controls the use of the custom directive. — A Directive in AngularJS can be used as Attribute, Element, Class,Comment.It can have the value of any combination of A|E|C|M. Example, restrict : “AC” designates the custom directive can only be used as an attribute or class. —The default value of restrict […]
Compass Blueprint FrameWork : 1
Compass is based on SASS and provides an additional framework called Blueprints. Blueprint comes in two tastes one with Basic and other is with Semantic. In this Demo, “We will see how to install Blueprint and add its support to a project“. The below screenshot shows the create command to setup a project, The below […]
SASS Interactive Shell
SASS provides a Interactive Shell prompt for use to test scripts. In this Demo, “We will see how to open a SASS Interactive Shell and some use with arithmetic operations on pixel and Hex colors“. You can see my previous post to get started with SASS. Sass Interactive shell can be called using ”SASS -i” […]
Understanding SASS Output Formats
SASS provides 4 different types of output formats for compiled css. Those format styles are as below:- —Nested : — This format is based on the relationship among the css classes. — This is better for understanding css […]