Css 12
Compass A CSS Authoring Framework
“COMPASS” is another popular CSS Authoring framework.It is based on SASS. It provides two powerful modules ‘COMPASS CORE‘ and ‘BLUEPRINT‘. You can know more from the below link:- http://compass-style.org/reference/compass/ In this Demo, “We will install the compass gem and attach the watcher to one of our project to monitor SCSS change“. The Initial project strucure:- […]
How to create shadow effect in css?
Using ‘BOX-SHADOW‘ property we can create shadow effect around an HTML element. The syntax of this property is, box-shadow: horizontal-shadow vertical-shadow blur-distance spread-distance color inset Checkout the below Fiddle of some shadow effects(fiddle link)
SASS : A CSS Authoring Framework
“SASS” is also called as “Sassy CSS” and It stands for Syntactically Awesome Style Sheet. It is used for Authoring CSS.It provides an awesome programmatic platform to a CSS developer. To know more about SASS use the below link:- […]
How to append ellipsis(…) to a paragraph?
There are some time where you want do display one line from a big paragraph appended with a ellipsis(…) symbol. CSS provides a property called text-overflow for this purpose.It has “ellipsis” or “clip“. ellipsis : It adds “…” to the end of the line. clip: It crops the paragraph and […]