what is CSS?

Cascaded Style Sheet is like a interior design to your home. You home means HTML. Just HTML can't give an aesthetic, beautiful look and feel to your website, CSS does this job.

I would like to suggest you that learn CSS3, that is the latest version of CSS, you have give beautiful animations, transitions, text shadow, box shadows etc., without using flash.
 
Last edited:
The abbreviation of CSS is Cascading Style Sheets. CSS helps your website to make beautiful and happy to look at. It totally deals with fonts, colors and separation of elements from one to other. In easy words CSS gives a good and neat outfit to the raw HTML document.
 
CSS treats each HTML element as if it appears inside its own box and uses rules to indicate how that element should look. Rules are made up of selectors (that specify the elements the rule applies to) and declarations (that indicate what these elements should look like).
Different types of selectors allow you to target your rules at different elements.CSS rules usually appear in a separate document,
although they may appear within an HTML page.
 
CSS stands for Cascading Style Sheets

Styling can be added to HTML elements in 3 ways:

Inline - using a style attribute in HTML elements
Internal - using a <style> element in the HTML <head> section
External - using one or more external CSS files
 
cascading style sheet is known as CSS and basicly used for define styles of your documents, including the design, layout and variations in display for different devices and screen sizes.
 
CSS is Cascading Style Sheets that is used for changing the style of particular area. HTML and CSS can be simply called as father and mother of web designing.
 
Back
Top