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

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:
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: Rational or Relational Selectors: Descendent Selector -- Child Selector -- Adjacent --
General --
Attribute Selectors:
Syntax: [attribute="val"] [attribute^="val"] [attribute$="val"] [attribute*="val"] [attribute|="val"] [attribute~="val"] Dynamic Pseudo-Classes:
:link -- Specifies effect for Hyperlink. Syntax: Target pseudo class -- The Element state pseudo-classes --
The Element validation state pseudo classes:
:valid -- It defines effects for element if is value is valid against the :invalid -- It defines effect for element when it is invalid. Structural Selectors: :first-child -- It defines effects only for first child element. Pseudo-Element Selectors: Language Selector:
Universal Selector:
CSS Comments:
CSS Colors: Hexadecimal color code:
RGB color code:
Ex: RGBA (Red, Green, Blue, Alpha)
CSS Units:
Absolute Length Units :-
Relative length units: em -- It uses the font size of parentelement and applies to current element. Cascading Rules:
CSS 2D Transforms:
Various transforms provided by CSS are: scale():
Skew():
angle clockwise: 0 to 360 Rotate():
Transform Matrix: CSS 3D Transforms:
Translate3d():
Scale3d:
CSS Text Styling: Ex: Font, Font Style, Color, Text Decoration CSS Box Model:
Padding Box -- The padding is around the content as white space. Its size can be controlled by using "padding".
Border Box -- The border box warps around the content or padding. It is controlled by using "border" property.
Margin Box -- The margin is the outmost layer wrapping the content, padding and border. It configures a white space around border. It is defined by using “margin”.
Set Margins, Padding and Border: Padding CSS Transition:
-- timing -- transition transition-delay : Delay is time taken to start animation. transition-duration : Time take to complete the transformation.Specifies the duration from initial to final and vice versa. transition-property : You can define several effects for transformation. transition-timing-function : CSS provides a set of pre-defined animations functions which you can apply to content. linear: speed will be even from begin to end. ease-in: starts slowly and increases towards end. ease-out: starts quickly and slow down. ease-in-out steps jump-start jump-end jump-none jump-both start end step-start step-end CSS Animations: @Keyframes:
Syntax: CSS Position:
Static Position:
Sticky Position:
Fixed Position:
Relative Position:
Position Absolute:
As you apply these techniques, your CSS skills will continue to grow, opening doors to endless design possibilities.
Thank you for taking the time to read this article. I hope it has helped you on your CSS journey!
.className{
}
-These selector default with parent and child elements as well as with elements that have relation.
-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 {
}
-It applies effects only to the direct child of parent element.
Syntax:
Parent > child {
}
FirstElement + adjacentElement
{
}
FirstElement ~ AdjacentElements
{
}
tagName[“attribute”] { }
tagName[“attribute=value”] { }
-- Equal specifies that it should be exact match.
-- It refers the value starting with specified term.
-- It specifies that the value ending with given term.
-- It matches the term at any location.
-- Name starts with specified term and separated with "-".
-- Name start with specified term and contain blank space.
link - not element, it refers to
class/Id/type: pseudoClass {
}
:visited -- It defines effects for visited links.
:hover -- It defines effects when mouse pointer is over element.
:active -- It defines effects when link is in active state.
:focus -- It defines effects when element get focus.
Element:Link { }
#heading:hover {}
.txtName:focus { }
:target :-
validation defined. Validation can be verified by using:
:in-range -- It defines effects for element when input value is within the specified range.
:out-of-range -- It defines effects for element when input value is out of given range.
-Range is verified with “min and max” values defined for input
element.
:required -- It defines effects to element when it verified with required
error.
-It is not validating required, It is just verifying whether the required defined or not.
:optional --If it is not defined with required validation then it is treated as optional.
-You can target your effects based on the position of element in parent and child hierarchy.
:last-child -- It defines effects only for last child element.
:nth-child(LevelNumber) -- It defines effects only to specific child element that occurs at given level.
-Level number starts with 1.
-Index number starts with 0.
-You can also define the pre-set values like ‘even & odd’ to apply effects based on even and odd occurrences.
:nth-of-type(LevelNumber[n]) -- It will repeat the effect for every nth occurrence.
:nth-of-type(2n) -- It will repeat the effect for every 2nd occurrence.
:nth-of-type(2n+startNumber) -- It will start with specific level.
:nth-last-of-type(n) -- It will apply effect for every nth occurrence from bottom.
:nth-last-child(n) -- It will apply from bottom without repeating.
:root -- It refers to root of document, which is 'body'.
:empty -- If any element is empty, without any content then its will define the given effects.You can configure for containers like ,
, ,
etc.
::first-line -- Effects for first line in paragraph.
::first-letter -- Effects for first character.
::before -- Effect or content to add before the current element.
::after -- Effect or content to add after the current element.
::placeholder -- It will apply effects for placeholder.
::selection -- It will apply effects for selection.
":lang()"
element, and starts with
/* and ends with */
.
CSS Colors
h2{
color:green;
}
h2{
color:lightgreen;
}
Relative length units:
ex -- X- height of elements’ font [width]
ch -- Defined for width, with regard to the root element.
rem -- Font size to the root element size.
ln -- Line height of the element.
vw -- 1% of the viewport’s width.
vh -- 1% of the viewport’s height.
vmin -- 1% of the viewport’s smaller dimension.
vmax --1% of the viewport’s larger dimension.
translate()-
transform:translate(xPixels, yPixels);
transform:translateX(pixels);
transform:translateY(pixels);
Note: Transformation happens in just one second, you can set timing for transformation by using "transition" attribute.
transform:scale(scaleX, scaleY);
transform:scaleX()
transform:scaleY()
transform:scale(2) // both x and y will be 200
transform:scale(2,1) // x will be 200 and y 100
transform:scaleX(2) // x will be 200
X = width
Y = height
transform:skew(sx, sy)
transform:skewX(angle)
transform:skewY(angle)
angle counter clockwise: -360
transform:rotate(‘angle’);
transform:rotateX()
transform:rotateY()
-- Matrix allows to define all 2D transforms to single element.
-- The transform methods
-- translate(x,y)
-- translateX()
-- translateY()
-- scale(x,y)
-- scaleX()
-- scaleY()
-- rotate()
-- rotateX()
-- rotateY()
-- skew()
-- skewX()
-- skewY()
Syntax:
matrix(scaleX(), skewY(), skewX(), scaleY(),
translateX(), translateY())
translate3d(tx, ty, tz)
scale3d(x, y, z)
Font Styling :-
-It provides a set of attributes and values that are used to
format the text.
color -- Defines the foreground color.
font-family -- It defines the font family name like: Arial
font-size -- It defines the text size.
font-weight -- Defines normal, bold, lighter, bolder.
font-style -- Defines italic effect.
text-transform -- Defines uppercase, lowercase, capitalize, full-width. [affects the font size]
text-decoration -- Defines underline, overline, line- through.
-It is short had for various text decoration options like style of line, color of line etc.
-- text-decoration-color
-- text-decoration-style
-- text-decoration-line
text-shadow -- It defines a shadow for text.
text-align -- Left, center, right and justify
line-height -- Space between lines.
letter-spacing -- Space between letters.
word-spacing -- Space between words.
font-variant -- Caps, lowercase. [Without effecting the height of text it will change to caps]
text-indent -- First line spacing.
text-overflow -- Control the wrapping of text.
white-space -- Control the blank space.
direction -- Text direction
text-orientation -- Changes the orientation of text.
Margin
-- It specifies the space around border.
-- You define by using following properties.
-- margin [short hand – sets in all directions].
-- margin-top.
-- margin-bottom.
-- margin-left.
-- margin-right.
-- It specifies the space around content.
-- You can define
-- Padding-left.
-- Padding-right.
-- Padding-top.
-- Padding-bottom.
-- Padding. (All options are similar like margin)
-- duration
-- other attributes
-- transition-delay
-- transition-duration
-- transition-property
-- transition-timing-function
Syntax:
transition-delay: 2s;
Syntax:
transition-duration: 5s;
-All effects are transformed from initial to final.
-You can define only the effect that you want to transform by using transform-property.
Syntax:
transition-property: width,
height;
transition-property:all;
-These effects have pre-defined timings and behaviour.
-The transition timing functions are
-- CSS animations are used to animate CSS transitions.
-- You can reduce the use of JavaScript and Flash for animation.
-- Animation can easily run on low bandwidth devices like mobiles, tabs.
-- Animation will work even when JavaScript is disabled or flash plugin is not available.
-- To create CSS animation, we need
-- @keyframes
-- animation
-- animation-name
-- animation-duration
-- animation-timing-function
-- animation-delay
-- animation-iteration-count
-- animation-direction
-- animation-fill-mode
-- animation-play-state
@keyframes identifierName
{
from { effects for initial state }
to { effects for final state }
}
P {
animation-name:
keyframeIdentifierName;
}
p {
position: static;
right: 10px;
}