The Art of Styling: A Comprehensive Guide to Cascading Style Sheets(CSS)

What is CSS? CSS stands for Cascading Style Sheets. Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation (look and feel) of a web page written in HTML. It defines how HTML elements should be displayed on screen, paper, or in other media. CSS saves a lot of work. It can control the layout of multiple web pages all at once. Cascading: The term "cascading" refers to how styles are applied to elements in a hierarchical manner. If multiple styles apply to the same element, the "cascading" nature determines which style takes precedence. It follows a set of rules based on specificity, importance, and source order. Styles : Styles define a set of attributes that are used to make HTML more interactive and responsive. Styles use an object model to format HTML elements and make them more interactive. Object keeps all relative data and logic together. Object enables features like a) Reusability b) Separation c) Extensibility d) Maintainability e) Testability etc.. Sheets: CSS is written in separate files (stylesheets) that can be linked to HTML documents, allowing for better organization and maintainability. CSS Syntax Object is a key and value collection enclosed in a block "{ }".. { Key : value; Key : value; } Key refers to style attribute name. There are various style attributes like color, width, height, margin, padding etc.. Styles can be defined for HTML elements in 3 ways. a) Inline Styles b) Embedded Styles c) External Style Sheets Inline Styles: Styles are defined for HTML elements individually by using a "style" attribute. Inline styles are faster in rendering. You can't reuse the styles. Embedded Styles: Styles are defined for HTML elements using a container. You can embed style container in page. It enables easy reusability and extensibility. However it is slow in rendering when compared to inline. Syntax: selector { attribute: value; } External Style Sheets You can configure styles in a separate style sheet. Style sheets have extension ".css" You can link style sheet to any page. You can access styles across pages. CSS Selectors Selector is required for styles that are defined in embedded or external file. A selector selects HTML element in page in order to apply given set of styles. Selectors are of various types Primary Selectors Rational or Relational Selectors Structural Selectors Attribute Selectors Dynamic Pseudo Classes Root Selector Language Selector Universal Selector etc.. Primary Selectors: Type Selector ID Selector Class Selector Type Selector: It refers to element name. It applies styles to all occurrences of element in page. You can't ignore for any specific occurrence. Syntax: h1, p, div, span, li { } ID Selector: Every element can use an ID reference. You can configure styles using ID. ID is accessible with "#". You can choose occurrence where you want to apply the styles. Syntax: #text-style { } Every HTML element can have only one ID reference. You can't apply multiple set of styles to one element using ID. Class Selector: It is defined using class attribute. It is accessible using ".className". You can choose specific occurrence. It allows multiple inheritance. You can configure multiple classes for one element. Syntax: .className{ } Rational or Relational Selectors: -These selector default with parent and child elements as well as with elements that have relation. Relation like adjacent, below, above, before, after, first, last etc.. Descendent Selector -- -Targets all tags under specified parent. It includes any level hierarchy. -It defines the parent element and the child element by using space. Syntax: parentElement childElement { } Child Selector -- -It applies effects only to the direct child of parent element. Syntax: Parent > child { } Adjacent -- It defines effects to an element which is specified immediately after current element. It is not parent and child, it is one below another. It will apply only to the first adjacent element. Syntax: FirstElement + adjacentElement { } General -- It defines effects to all elements which are specified after the current element. Syntax: FirstElement ~ AdjacentElements { } Attribute Selectors: Several elements in HTML are presented by using attribute of tag. “type” is attribute. We have to apply effects based on attribute and value. Syntax: tagName[“attribute”] { } tagName[“attribute=value”] { } Attribute selectors can be defined with conditions. Effects are applied only to attribute that match the given condition. [attribute="val"] -- Equal specifies that it should be exact match. [attribute^="val"] -- It refers the value starting with specified term. [attribute$="val"] -- It specifies that the value ending with given term. [attribute*="val"] -- It matches the term at any location. [attribute|="val"] -- Name starts with speci

Mar 2, 2025 - 07:04
 0
The Art of Styling: A Comprehensive Guide to Cascading Style Sheets(CSS)

What is CSS?

  • CSS stands for Cascading Style Sheets.
  • Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation (look and feel) of a web page written in HTML. It defines how HTML elements should be displayed on screen, paper, or in other media.
  • CSS saves a lot of work. It can control the layout of multiple web pages all at once.

Cascading: The term "cascading" refers to how styles are applied to elements in a hierarchical manner. If multiple styles apply to the same element, the "cascading" nature determines which style takes precedence. It follows a set of rules based on specificity, importance, and source order.

Styles :

  • Styles define a set of attributes that are used to make HTML more interactive and responsive.
  • Styles use an object model to format HTML elements and make them more interactive.
  • Object keeps all relative data and logic together.
  • Object enables features like a) Reusability b) Separation c) Extensibility d) Maintainability e) Testability etc..

Sheets: CSS is written in separate files (stylesheets) that can be linked to HTML documents, allowing for better organization and maintainability.

CSS Syntax

  • Object is a key and value collection enclosed in a block "{ }"..

    {
    Key : value;
    Key : value;
    }

    • Key refers to style attribute name.
    • There are various style attributes like color, width, height, margin, padding etc..

Styles can be defined for HTML elements in 3 ways.
a) Inline Styles
b) Embedded Styles
c) External Style Sheets

Inline Styles:

  • Styles are defined for HTML elements individually by using a "style" attribute.

  • Inline styles are faster in rendering.

  • You can't reuse the styles.

Embedded Styles: