SlideShare a Scribd company logo
1 of 16
CSS ADVANCE STYDY COURSE
CHAPTER ONE: CSS GRADIENTS
 Use to create smooth transitions between two or more specified background colors.
They’re three (3) types of CSS Gradients
1.1 Linear Gradients
 Most include at least two (2) colors and a direction. Direction can be specified as left to
right (to right), right to left (to left), bottom to top (to top), top to bottom (to bottom), top
right to bottom left (to bottom left), top left to bottom right (to bottom right), bottom right
to top left (to top left), top left to bottom right (to bottom right).
 Linear gradient syntax
Selector{
background-image: linear-gradient (to left, color1, color2, etc)
}
Example
div {
background-image: linear-gradient (to bottom, yellow, red);
}
NB: the directions can also be replaced by degree
Example
Selector{
background-image: linear-gradient (180deg, color1, color2, etc)
}
Repeating Linear Gradient
Example
Selector{
Background-image: repeating-linear-gradient (direction, red, yellow 10%, green 20%)
}
NB: Background transparency can be achieved using rgba color specification
1.2 Radial Gradients
Selector{
background-image: radial-gradient (shape, color1, color2, etc)
}
Repeating Radial Gradient
Selector{
Background-image: repeating-radial-gradient (shape, red, yellow 10%, green 20%);
}
1.3 Conic Gradients
A conic gradient is a gradient with color transitions rotated around a center point. To create a
conic gradient you must define at least two colors. By default, angle is 0deg and position is
center.
Syntax
Selector{
background-image: conic-gradient([from angle] [at position,] color [degree], color [degree]);
}
Example
Selector{
background-image: conic-gradient(from 60deg at left, blue, pink, black, indigo, cyan, orange,
white, darkblue, purple);
}
or
#grad1 {
background-color: red; /* For browsers that do not support gradients */
background-image: conic-gradient(from 0deg at center bottom, blue 10deg, red 100deg, yellow
10deg);
border-radius: 50%;
}
Or
Selector{
background-image: conic-gradient(red, yellow, green);
}
CHAPTER TWO: CSS SHADOWS (SHADOW EFFECT)
2.1 Text Shadow
The CSS text-shadow property is used to apply one or more shadows to a text.
Used to apply shadow on text
Syntax
Selector{
text-shadow: horizontal effect, vertical effect, blur effect, color;
}
Example
Selector {
text-shadow: 2px 2px 6px red;
}
NB: To add multiple shadows, we separate the set of values with a comma
Example
Selector {
text-shadow: 2px 2px 6px red, 4px 10px 16px blue;
}
Example
Selector {
color: coral; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
2.2 BOX SHADOW
The CSS box-shadow property is used to apply one or more shadows to an element.
Syntax
Selector{
Box-shadow: ‘horizontal effect’ ‘vertical effect’ ‘blur effect’ ‘spread radius’ ‘color’;
}
Example
Selector {
Box-shadow: 2px 3px 4px 5px grey;
}
NB: Spread radius is used to control the size of the shadow relative to the original element.
A positive value implies the shadow is bigger than the original element and negative value
implies the shadow is smaller than the original elements.
NB: multiple box-shadow can be obtained by using commas
CHAPTER THREE: TEXT EFFECT
Writing Mode (text direction)
Use to specify the direction of writing
Syntax
Selector {
Writing-mode: direction;
}
 Writing-mode: horizontal-tb (writing horizontally from left to write)
 Writing-mode: horizontal-tb (writing horizontally from top to bottom)
CHAPTER FOUR: CSS GRID
With the CSS Grid module, you can design web pages without having to use floats and
positioning. A grid layout consists of a parent element, with one or more child elements.
That is a parent carrying all the properties and inside we have children to that parent.
An element can only become a grid container if the display property is set to grid or
inline-grid.
Syntax
Grid-container {
Display: grid;
Grid-template-columns: auto auto auto auto;
}
The above syntax is for four (4) columns
NB: Any class can be used for the grid property but the most important properties are the
display (grid or inline-grid) and grid-template-columns (number of columns to be
partition)
Each column can be set to auto if they will all be the same. Use percentage (%) if the
column differ from each other
Example
Selector {
display: grid;
Grid-template-columns: auto auto 30%;
}
NB: To add gaps between each column or row, use the column-gap or row- gap
property
Example
Selector {
display: grid;
Grid-template-columns: auto auto 30%;
Column-gap: 50px;
}
Or
Selector {
display: grid;
Grid-template-columns: auto auto 30%;
row-gap: 50px;
}
For general gap use the gap property to create a gap between columns and rows.
CHAPTER FIVE: 2D ANIMATION
CSS transform permits different transformation or changes on an element. This include changes
in position (translation), change in direction (rotation), change in size (scale), etc
. With the CSS transform property you can use the following 2D transformation methods:
 translate()
 rotate()
 scaleX()
 scaleY()
 scale()
 skewX()
 skewY()
 skew()
 matrix()
5.1 Translate()
The translate() is used to move an element from its current position to another base on a given X
and Y coordinate.
Syntax
Selector{
Transform: translate (X , Y)
}
Example
div {
transform: translate(40px, 80px);
}
5.2 Rotate ()
This method rotates an element about a fix axis based on a specified angle
Syntax
Selector{
Transform: rotate (degree)
}
Example
div {
transform: rotate(20deg);
}
NB: Positive values will cause clock-wise rotation while a negative value will cause anti-clock-
wish direction.
5.3 Scale ()
This method cause a change in size (increase or decrease) based on X and Y coordinates
(parameters).
Syntax
div {
transform: rotate(X, Y);
}
Example
div {
transform: scale(2, 3);
}
NB: Values above 1 will cause and increase in sizes while values below one (not 0 or negative
number) will cause a decrease in size.
Scaling can be done only in the X direction or only in the Y direction.
For X direction only we use transform: scale X (value).
For Y direction only we use transform: scale Y (value).
NB: For the general method, transform: scale (X, Y), if for example the value of X is 1 the X
dimension will not Change hence the scaling will be done only in the Y direction and Vice versa.
5.4 Skew ()
 Skew X: This method will cause the rotation about the X-axis at a given angle.
Syntax
div {
transform: skew(X, Y);
}
Example
div {
transform: skew(20deg,10deg);
}
 Skew Y: This method will cause the rotation about the Y-axis at a given angle.
Syntax
div {
transform: skew (X, Y);
}
Example
div {
transform: skew(20deg,10deg);
}
NB: This 2D transformation is mostly applicable with hover
CHAPTER SIX: 3D TRANFORM
This is the same as 2D transformation except for the fact that it include coordinate for the Z axis
CHAPTER SEVEN: CSS TRANSITIONS
Transition permits us to change elements properties or to transform element smoothly within a
given duration. Properties used to specified transition includes;
 Transition-duration: value (specify the time taken for changes to occur)
 Transition-delay: value (specify a waiting time before changes begin)
 Transition property: value (specify the given property of an element on which changes is
supposed to be made, such as width and height).
 Transition-timing-function: value (this specifies the behavior of the changes).
NB: transitions are mostly used on hover effect.
Example
div {
width: 100px;
height: 100px;
transition-property: width;
transition-duration: 2s;
transition-delay: 5s;
transition-timing-function:ease;
}
div:hover {
width: 300px;
height: 600px;
}
Transition can be used with transformation
Example
div {
width: 100px;
height: 100px;
transition-property: width;
transition-duration: 2s;
transition-delay: 2s;
transition-timing-function:ease;
}
div:hover {
transform:scale(4, 7);
}
CHAPTER EIGHT: CSS ANIMATIONS
Its permits the animation of HTML elements (the HTML element changes from one style to
another).
The “@keyframes” rule is used to determine how the element changes from one style to another
at given instances.
CSS Animations Properties and Meaning
1. Animation-name: value (specifies the name of the animation to be used on the
@keyframes rule).
2. Animation-duration: value (specifies the time taken for the animation or changes in style
to occur).
3. Animation-iteration-count: value (use to determine the number of time the animation
should be repeated).
4. Animation-delay: value (used to specify a delay time before the animation begin after the
page has been loaded).
5. Animation-direction: value (to determine the direction of an animation)
i. Animation-direction-values and meaning
 Animation-direction: normal; (the animation is played in the forward
direction)
 Animation-direction: reverse; (the animation is played in the backward
direction)
 Animation-direction: alternate; (the animation is played forward first, then
backward)
 Animation-direction: alternate-reverse; (the animation is played backward
first then forward)
6. Animation-timing-function: value (determines the behavior of the animations)
This property can take different values include (is, linear, is-in, is-out, and is-in-out)
7. Animation-fill-mode: value (specify a style for the element when the animation is not
playing)
This property can take values including (none, forwards, backwards, and both)
EXAMPLES 1
Div {
Height: 200px;
Width: 200px;
Background-color: red;
Animation-name: myanimation;
Animation-duration: 3s;
Animation-delay: 2s;
Animation-iteration-count: 5;
Animation-direction: normal;
Animation-timing-function: linear;
Animation-fill-mode: forwards;
}
@keyframes myanimation{
from {width: 50px;}
to {width: 200px;}
}
EXAMPLE 2
Div {
Height: 200px;
Width: 200px;
Background-color: red;
Animation-name: myanimation;
Animation-duration: 3s;
Animation-delay: 2s;
Animation-iteration-count: 5;
Animation-direction: normal;
Animation-timing-function: linear;
Animation-fill-mode: forwards;
}
@keyframes myanimation{
0% {background-color: orange ;}
25% {background-color: pink ;}
50% {background-color: indigo ;}
75% {background-color: purple ;}
100% {background-color: black ;}
}
NB: We can use multiple style properties for a single instance. See example below
@keyframes myanimation{
from {width: 50px; border: 1px solid orange;}
to {width: 200px; border: 4px double red;}
}
CHAPTER NINE: ADVANCE IMAGE STYLING
9.1 Image Rounded Corner
Example
img{
Border-radius: 8px;
}
9.2 Rounded Image
Example
img{
Border-radius: 50%;
}
NB: To center an image, set left and right margin to auto and make it into a block element
img {
filter: grayscale(100%);
}
9.2 Image Responsive
 Image should automatically readjust and fit for different screen sizes. To do this,
specify image width using percentage and image height as auto
 To centralize an image set the margin-left and margin-right to auto and set image
display to block
9.3 Image opacity (transparency)
img {
opacity: 0.5;
}
9.3 Image Filter
Filter is used to put additional visual effects on an element such as an image
Most common filters and example
Filter: blur(30px)
Filter: brightness (40%)
Filter: contrast (50%)
Filter: greyscale (70%)
Filter: hue-rotate(120deg)
Filter: invert (20%)
Filter: opacity (30%)
Filter: saturate (6)
Filter: sepia (24%)
Filter: drop-shadow (2px 3px 4px red)
9.4 Image hover/Overlay
9.5 Image reflection
Example
Img{
-webkit-box-reflect: value; (right, left, top, bottom)
}
Additional value can be added for upset position
Example
Img{
-webkit-box-reflect: right 10px;
}
9.6 Object fit
This property specifies how an image is resize to fit a container.
Example:
Img{
Object-fit: value (cover, contain, fill, none, scale-down,)
}
 Object-fit: cover; (the image keeps its aspect ratio while filling the entire container. Part
of the image might be chopped off)
 Object-fit: contain; (the object maintains its aspect ratio and resize itself within the
container)
 Object-fill: fill; (the image is resize to fill the entire container. The image might be
stretched or compress thereby losing its aspect ratio)
 Object-fill: none; (the image is not resize)
 Object-fill: scale-down; (the image is resize to its smallest version that can fit into the
container.)
9.7 Object position
This property is used to choose a position of focus on an image
Example
Img{
Object-fit: cover;
Object-position: top left;
}
Other object position values include (top right, top center, center left, center center, center right,
bottom right, bottom center, bottom left)
CHAPTER TEN: CSS MASKING (OPTIONAL)
CHAPTER ELEVEN: MULTIPLE COLUMNS
Use to display text in multiple columns in a single container, as in newspaper, Bible
Multi-column Properties include;
 Column-count: 2 (to determine the number of columns)
 Column-gap: 35px (determine the gap between columns)
 Column-rule-style: solid (determine the line style of the column separator)
 Column: rule-width: 4px; (determine the width of the line separator )
 Column-rule-color: red; (determine the color of the line separator)
 Column-rule: 2px solid red; (specifies the line separator with style and color)
 Column-span: all (expends the text for each element across all columns), none
(evenly distribute the content for all elements across all columns)
 Column-width: 50px; (Automatically readjust the number of columns based on
total available width or screen size. This can be used to display different number of
columns for different screen sizes such as mobile, table, desktop, etc).
CHAPTER TWELVE: CSS USER INTERFACE
This functionally permits the developer to determine whether a user can resize an element or
now. We have two properties involve.
 Resize: value (horizontal, vertical, both, none). This determines the direction of resizing.
Note that to use the above property, you must set overflow to auto for the given element.
 Outline-upset: 30px; (to give a space between the border and the outline of an element
CHAPTER THIRDTEEN: CSS BOX SIZING
This property help the developer includes the padding and border as part of the total
specified height or width of an element
USAGE
*{
Box-sizing: border-box;
}
NB: The above CSS expression should be used in the head section of all pages. This will permit the
box-sizing property to be applied on all elements on the page.
EXAMPLE
.div1{
Border-sizing: border-box;
Padding: 20px;
Width: 300px;
Height: 300px;
Border: 2px solid red;
}
.div2{
Padding: 20px;
Width: 300px;
Height: 300px;
Border: 2px solid red;
}
CHAPTER FOURTEEN: MEDIA QUERY
It is used to display different styling for different screen sizes or device type
Syntax
@media screen and(expression){
.selector{
Property: value;
}
}
Example
@media screen and (max-width:600px){
div {
Width: 30%;
}
}
The above styling for the div will be applied only to screen sizes of 600px and smaller.
@media screen and (min-width: 600px){
div {
Width: 30%;
}
}
The above styling for the div will be applied only to screen sizes of 600px and larger.
CHAPTER FIFTEEN: CSS FLEX BOX

More Related Content

Similar to ADVANCE CSS STYDY COURSE TO BECOME A PROFESSIONAL.docx

computer graphics lab manual 2013-converted.pdf
computer graphics lab manual 2013-converted.pdfcomputer graphics lab manual 2013-converted.pdf
computer graphics lab manual 2013-converted.pdf
SyedSajjadShah3
 
Vector And Illustrator 03
Vector And Illustrator 03Vector And Illustrator 03
Vector And Illustrator 03
PaperStainer
 
Html5 Canvas Drawing and Animation
Html5 Canvas Drawing and AnimationHtml5 Canvas Drawing and Animation
Html5 Canvas Drawing and Animation
Mindfire Solutions
 

Similar to ADVANCE CSS STYDY COURSE TO BECOME A PROFESSIONAL.docx (20)

CSS3 Animation for beginners - Imrokraft
CSS3 Animation for beginners - ImrokraftCSS3 Animation for beginners - Imrokraft
CSS3 Animation for beginners - Imrokraft
 
CSS
CSS CSS
CSS
 
Workshop 18: CSS Animations & cool effects
Workshop 18: CSS Animations & cool effectsWorkshop 18: CSS Animations & cool effects
Workshop 18: CSS Animations & cool effects
 
Advanced CSS Tricks and Techniques
Advanced CSS Tricks and TechniquesAdvanced CSS Tricks and Techniques
Advanced CSS Tricks and Techniques
 
computer graphics lab manual 2013-converted.pdf
computer graphics lab manual 2013-converted.pdfcomputer graphics lab manual 2013-converted.pdf
computer graphics lab manual 2013-converted.pdf
 
Chapter 18: Transitions, Transforms, and Animation
Chapter 18: Transitions, Transforms, and AnimationChapter 18: Transitions, Transforms, and Animation
Chapter 18: Transitions, Transforms, and Animation
 
CSS
CSSCSS
CSS
 
DotNetNuke World CSS3
DotNetNuke World CSS3DotNetNuke World CSS3
DotNetNuke World CSS3
 
17523630.ppt
17523630.ppt17523630.ppt
17523630.ppt
 
Powerpointpresentation.c
Powerpointpresentation.cPowerpointpresentation.c
Powerpointpresentation.c
 
HTML5 Canvas - Basics.pptx
HTML5 Canvas - Basics.pptxHTML5 Canvas - Basics.pptx
HTML5 Canvas - Basics.pptx
 
Vector And Illustrator 03
Vector And Illustrator 03Vector And Illustrator 03
Vector And Illustrator 03
 
SVG, CSS3, and D3 for Beginners
SVG, CSS3, and D3 for BeginnersSVG, CSS3, and D3 for Beginners
SVG, CSS3, and D3 for Beginners
 
CSS - Basics
CSS - BasicsCSS - Basics
CSS - Basics
 
canvas_1.pptx
canvas_1.pptxcanvas_1.pptx
canvas_1.pptx
 
Css animation
Css animationCss animation
Css animation
 
Scmad Chapter06
Scmad Chapter06Scmad Chapter06
Scmad Chapter06
 
Cordova training - Day 3 : Advanced CSS 3
Cordova training - Day 3 : Advanced CSS 3Cordova training - Day 3 : Advanced CSS 3
Cordova training - Day 3 : Advanced CSS 3
 
Html5 Canvas Drawing and Animation
Html5 Canvas Drawing and AnimationHtml5 Canvas Drawing and Animation
Html5 Canvas Drawing and Animation
 
Css ejemplos y codigo 1
Css ejemplos y codigo 1Css ejemplos y codigo 1
Css ejemplos y codigo 1
 

Recently uploaded

Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
Lisi Hocke
 

Recently uploaded (20)

COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
COMPUTER AND ITS COMPONENTS PPT.by naitik sharma Class 9th A mittal internati...
 
From Theory to Practice: Utilizing SpiraPlan's REST API
From Theory to Practice: Utilizing SpiraPlan's REST APIFrom Theory to Practice: Utilizing SpiraPlan's REST API
From Theory to Practice: Utilizing SpiraPlan's REST API
 
Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
Team Transformation Tactics for Holistic Testing and Quality (NewCrafts Paris...
 
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
Abortion Pill Prices Mthatha (@](+27832195400*)[ 🏥 Women's Abortion Clinic In...
 
Automate your OpenSIPS config tests - OpenSIPS Summit 2024
Automate your OpenSIPS config tests - OpenSIPS Summit 2024Automate your OpenSIPS config tests - OpenSIPS Summit 2024
Automate your OpenSIPS config tests - OpenSIPS Summit 2024
 
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
Anypoint Code Builder - Munich MuleSoft Meetup - 16th May 2024
 
Rapidoform for Modern Form Building and Insights
Rapidoform for Modern Form Building and InsightsRapidoform for Modern Form Building and Insights
Rapidoform for Modern Form Building and Insights
 
Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14Spring into AI presented by Dan Vega 5/14
Spring into AI presented by Dan Vega 5/14
 
Lessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdfLessons Learned from Building a Serverless Notifications System.pdf
Lessons Learned from Building a Serverless Notifications System.pdf
 
BusinessGPT - Security and Governance for Generative AI
BusinessGPT  - Security and Governance for Generative AIBusinessGPT  - Security and Governance for Generative AI
BusinessGPT - Security and Governance for Generative AI
 
A Deep Dive into Secure Product Development Frameworks.pdf
A Deep Dive into Secure Product Development Frameworks.pdfA Deep Dive into Secure Product Development Frameworks.pdf
A Deep Dive into Secure Product Development Frameworks.pdf
 
Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?Prompt Engineering - an Art, a Science, or your next Job Title?
Prompt Engineering - an Art, a Science, or your next Job Title?
 
Abortion Pill Prices Turfloop ](+27832195400*)[ 🏥 Women's Abortion Clinic in ...
Abortion Pill Prices Turfloop ](+27832195400*)[ 🏥 Women's Abortion Clinic in ...Abortion Pill Prices Turfloop ](+27832195400*)[ 🏥 Women's Abortion Clinic in ...
Abortion Pill Prices Turfloop ](+27832195400*)[ 🏥 Women's Abortion Clinic in ...
 
Abortion Clinic In Pretoria ](+27832195400*)[ 🏥 Safe Abortion Pills in Pretor...
Abortion Clinic In Pretoria ](+27832195400*)[ 🏥 Safe Abortion Pills in Pretor...Abortion Clinic In Pretoria ](+27832195400*)[ 🏥 Safe Abortion Pills in Pretor...
Abortion Clinic In Pretoria ](+27832195400*)[ 🏥 Safe Abortion Pills in Pretor...
 
Novo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMsNovo Nordisk: When Knowledge Graphs meet LLMs
Novo Nordisk: When Knowledge Graphs meet LLMs
 
The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)The mythical technical debt. (Brooke, please, forgive me)
The mythical technical debt. (Brooke, please, forgive me)
 
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
CERVED e Neo4j su una nuvola, migrazione ed evoluzione di un grafo mission cr...
 
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
Abortion Clinic In Johannesburg ](+27832195400*)[ 🏥 Safe Abortion Pills in Jo...
 
Alluxio Monthly Webinar | Simplify Data Access for AI in Multi-Cloud
Alluxio Monthly Webinar | Simplify Data Access for AI in Multi-CloudAlluxio Monthly Webinar | Simplify Data Access for AI in Multi-Cloud
Alluxio Monthly Webinar | Simplify Data Access for AI in Multi-Cloud
 
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
Wired_2.0_CREATE YOUR ULTIMATE LEARNING ENVIRONMENT_JCON_16052024
 

ADVANCE CSS STYDY COURSE TO BECOME A PROFESSIONAL.docx

  • 1. CSS ADVANCE STYDY COURSE CHAPTER ONE: CSS GRADIENTS  Use to create smooth transitions between two or more specified background colors. They’re three (3) types of CSS Gradients 1.1 Linear Gradients  Most include at least two (2) colors and a direction. Direction can be specified as left to right (to right), right to left (to left), bottom to top (to top), top to bottom (to bottom), top right to bottom left (to bottom left), top left to bottom right (to bottom right), bottom right to top left (to top left), top left to bottom right (to bottom right).  Linear gradient syntax Selector{ background-image: linear-gradient (to left, color1, color2, etc) } Example div { background-image: linear-gradient (to bottom, yellow, red); } NB: the directions can also be replaced by degree Example Selector{ background-image: linear-gradient (180deg, color1, color2, etc) } Repeating Linear Gradient Example Selector{ Background-image: repeating-linear-gradient (direction, red, yellow 10%, green 20%) } NB: Background transparency can be achieved using rgba color specification 1.2 Radial Gradients Selector{ background-image: radial-gradient (shape, color1, color2, etc) }
  • 2. Repeating Radial Gradient Selector{ Background-image: repeating-radial-gradient (shape, red, yellow 10%, green 20%); } 1.3 Conic Gradients A conic gradient is a gradient with color transitions rotated around a center point. To create a conic gradient you must define at least two colors. By default, angle is 0deg and position is center. Syntax Selector{ background-image: conic-gradient([from angle] [at position,] color [degree], color [degree]); } Example Selector{ background-image: conic-gradient(from 60deg at left, blue, pink, black, indigo, cyan, orange, white, darkblue, purple); } or #grad1 { background-color: red; /* For browsers that do not support gradients */ background-image: conic-gradient(from 0deg at center bottom, blue 10deg, red 100deg, yellow 10deg); border-radius: 50%; } Or Selector{ background-image: conic-gradient(red, yellow, green); }
  • 3. CHAPTER TWO: CSS SHADOWS (SHADOW EFFECT) 2.1 Text Shadow The CSS text-shadow property is used to apply one or more shadows to a text. Used to apply shadow on text Syntax Selector{ text-shadow: horizontal effect, vertical effect, blur effect, color; } Example Selector { text-shadow: 2px 2px 6px red; } NB: To add multiple shadows, we separate the set of values with a comma Example Selector { text-shadow: 2px 2px 6px red, 4px 10px 16px blue; } Example Selector { color: coral; text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; } 2.2 BOX SHADOW The CSS box-shadow property is used to apply one or more shadows to an element.
  • 4. Syntax Selector{ Box-shadow: ‘horizontal effect’ ‘vertical effect’ ‘blur effect’ ‘spread radius’ ‘color’; } Example Selector { Box-shadow: 2px 3px 4px 5px grey; } NB: Spread radius is used to control the size of the shadow relative to the original element. A positive value implies the shadow is bigger than the original element and negative value implies the shadow is smaller than the original elements. NB: multiple box-shadow can be obtained by using commas CHAPTER THREE: TEXT EFFECT Writing Mode (text direction) Use to specify the direction of writing Syntax Selector { Writing-mode: direction; }  Writing-mode: horizontal-tb (writing horizontally from left to write)  Writing-mode: horizontal-tb (writing horizontally from top to bottom) CHAPTER FOUR: CSS GRID With the CSS Grid module, you can design web pages without having to use floats and positioning. A grid layout consists of a parent element, with one or more child elements. That is a parent carrying all the properties and inside we have children to that parent. An element can only become a grid container if the display property is set to grid or inline-grid.
  • 5. Syntax Grid-container { Display: grid; Grid-template-columns: auto auto auto auto; } The above syntax is for four (4) columns NB: Any class can be used for the grid property but the most important properties are the display (grid or inline-grid) and grid-template-columns (number of columns to be partition) Each column can be set to auto if they will all be the same. Use percentage (%) if the column differ from each other Example Selector { display: grid; Grid-template-columns: auto auto 30%; } NB: To add gaps between each column or row, use the column-gap or row- gap property Example Selector { display: grid; Grid-template-columns: auto auto 30%; Column-gap: 50px; } Or Selector { display: grid; Grid-template-columns: auto auto 30%; row-gap: 50px; } For general gap use the gap property to create a gap between columns and rows.
  • 6. CHAPTER FIVE: 2D ANIMATION CSS transform permits different transformation or changes on an element. This include changes in position (translation), change in direction (rotation), change in size (scale), etc . With the CSS transform property you can use the following 2D transformation methods:  translate()  rotate()  scaleX()  scaleY()  scale()  skewX()  skewY()  skew()  matrix() 5.1 Translate() The translate() is used to move an element from its current position to another base on a given X and Y coordinate. Syntax Selector{ Transform: translate (X , Y) } Example div { transform: translate(40px, 80px); } 5.2 Rotate () This method rotates an element about a fix axis based on a specified angle
  • 7. Syntax Selector{ Transform: rotate (degree) } Example div { transform: rotate(20deg); } NB: Positive values will cause clock-wise rotation while a negative value will cause anti-clock- wish direction. 5.3 Scale () This method cause a change in size (increase or decrease) based on X and Y coordinates (parameters). Syntax div { transform: rotate(X, Y); } Example div { transform: scale(2, 3); } NB: Values above 1 will cause and increase in sizes while values below one (not 0 or negative number) will cause a decrease in size. Scaling can be done only in the X direction or only in the Y direction. For X direction only we use transform: scale X (value). For Y direction only we use transform: scale Y (value).
  • 8. NB: For the general method, transform: scale (X, Y), if for example the value of X is 1 the X dimension will not Change hence the scaling will be done only in the Y direction and Vice versa. 5.4 Skew ()  Skew X: This method will cause the rotation about the X-axis at a given angle. Syntax div { transform: skew(X, Y); } Example div { transform: skew(20deg,10deg); }  Skew Y: This method will cause the rotation about the Y-axis at a given angle. Syntax div { transform: skew (X, Y); } Example div { transform: skew(20deg,10deg); } NB: This 2D transformation is mostly applicable with hover CHAPTER SIX: 3D TRANFORM This is the same as 2D transformation except for the fact that it include coordinate for the Z axis
  • 9. CHAPTER SEVEN: CSS TRANSITIONS Transition permits us to change elements properties or to transform element smoothly within a given duration. Properties used to specified transition includes;  Transition-duration: value (specify the time taken for changes to occur)  Transition-delay: value (specify a waiting time before changes begin)  Transition property: value (specify the given property of an element on which changes is supposed to be made, such as width and height).  Transition-timing-function: value (this specifies the behavior of the changes). NB: transitions are mostly used on hover effect. Example div { width: 100px; height: 100px; transition-property: width; transition-duration: 2s; transition-delay: 5s; transition-timing-function:ease; } div:hover { width: 300px; height: 600px; }
  • 10. Transition can be used with transformation Example div { width: 100px; height: 100px; transition-property: width; transition-duration: 2s; transition-delay: 2s; transition-timing-function:ease; } div:hover { transform:scale(4, 7); } CHAPTER EIGHT: CSS ANIMATIONS Its permits the animation of HTML elements (the HTML element changes from one style to another). The “@keyframes” rule is used to determine how the element changes from one style to another at given instances. CSS Animations Properties and Meaning 1. Animation-name: value (specifies the name of the animation to be used on the @keyframes rule). 2. Animation-duration: value (specifies the time taken for the animation or changes in style to occur). 3. Animation-iteration-count: value (use to determine the number of time the animation should be repeated). 4. Animation-delay: value (used to specify a delay time before the animation begin after the page has been loaded). 5. Animation-direction: value (to determine the direction of an animation) i. Animation-direction-values and meaning
  • 11.  Animation-direction: normal; (the animation is played in the forward direction)  Animation-direction: reverse; (the animation is played in the backward direction)  Animation-direction: alternate; (the animation is played forward first, then backward)  Animation-direction: alternate-reverse; (the animation is played backward first then forward) 6. Animation-timing-function: value (determines the behavior of the animations) This property can take different values include (is, linear, is-in, is-out, and is-in-out) 7. Animation-fill-mode: value (specify a style for the element when the animation is not playing) This property can take values including (none, forwards, backwards, and both) EXAMPLES 1 Div { Height: 200px; Width: 200px; Background-color: red; Animation-name: myanimation; Animation-duration: 3s; Animation-delay: 2s; Animation-iteration-count: 5; Animation-direction: normal; Animation-timing-function: linear; Animation-fill-mode: forwards; } @keyframes myanimation{ from {width: 50px;} to {width: 200px;} } EXAMPLE 2 Div { Height: 200px; Width: 200px; Background-color: red; Animation-name: myanimation; Animation-duration: 3s; Animation-delay: 2s; Animation-iteration-count: 5; Animation-direction: normal;
  • 12. Animation-timing-function: linear; Animation-fill-mode: forwards; } @keyframes myanimation{ 0% {background-color: orange ;} 25% {background-color: pink ;} 50% {background-color: indigo ;} 75% {background-color: purple ;} 100% {background-color: black ;} } NB: We can use multiple style properties for a single instance. See example below @keyframes myanimation{ from {width: 50px; border: 1px solid orange;} to {width: 200px; border: 4px double red;} } CHAPTER NINE: ADVANCE IMAGE STYLING 9.1 Image Rounded Corner Example img{ Border-radius: 8px; } 9.2 Rounded Image Example img{ Border-radius: 50%; } NB: To center an image, set left and right margin to auto and make it into a block element img { filter: grayscale(100%); }
  • 13. 9.2 Image Responsive  Image should automatically readjust and fit for different screen sizes. To do this, specify image width using percentage and image height as auto  To centralize an image set the margin-left and margin-right to auto and set image display to block 9.3 Image opacity (transparency) img { opacity: 0.5; } 9.3 Image Filter Filter is used to put additional visual effects on an element such as an image Most common filters and example Filter: blur(30px) Filter: brightness (40%) Filter: contrast (50%) Filter: greyscale (70%) Filter: hue-rotate(120deg) Filter: invert (20%) Filter: opacity (30%) Filter: saturate (6) Filter: sepia (24%) Filter: drop-shadow (2px 3px 4px red) 9.4 Image hover/Overlay 9.5 Image reflection Example Img{ -webkit-box-reflect: value; (right, left, top, bottom) } Additional value can be added for upset position
  • 14. Example Img{ -webkit-box-reflect: right 10px; } 9.6 Object fit This property specifies how an image is resize to fit a container. Example: Img{ Object-fit: value (cover, contain, fill, none, scale-down,) }  Object-fit: cover; (the image keeps its aspect ratio while filling the entire container. Part of the image might be chopped off)  Object-fit: contain; (the object maintains its aspect ratio and resize itself within the container)  Object-fill: fill; (the image is resize to fill the entire container. The image might be stretched or compress thereby losing its aspect ratio)  Object-fill: none; (the image is not resize)  Object-fill: scale-down; (the image is resize to its smallest version that can fit into the container.) 9.7 Object position This property is used to choose a position of focus on an image Example Img{ Object-fit: cover; Object-position: top left; } Other object position values include (top right, top center, center left, center center, center right, bottom right, bottom center, bottom left) CHAPTER TEN: CSS MASKING (OPTIONAL) CHAPTER ELEVEN: MULTIPLE COLUMNS Use to display text in multiple columns in a single container, as in newspaper, Bible Multi-column Properties include;  Column-count: 2 (to determine the number of columns)  Column-gap: 35px (determine the gap between columns)  Column-rule-style: solid (determine the line style of the column separator)
  • 15.  Column: rule-width: 4px; (determine the width of the line separator )  Column-rule-color: red; (determine the color of the line separator)  Column-rule: 2px solid red; (specifies the line separator with style and color)  Column-span: all (expends the text for each element across all columns), none (evenly distribute the content for all elements across all columns)  Column-width: 50px; (Automatically readjust the number of columns based on total available width or screen size. This can be used to display different number of columns for different screen sizes such as mobile, table, desktop, etc). CHAPTER TWELVE: CSS USER INTERFACE This functionally permits the developer to determine whether a user can resize an element or now. We have two properties involve.  Resize: value (horizontal, vertical, both, none). This determines the direction of resizing. Note that to use the above property, you must set overflow to auto for the given element.  Outline-upset: 30px; (to give a space between the border and the outline of an element CHAPTER THIRDTEEN: CSS BOX SIZING This property help the developer includes the padding and border as part of the total specified height or width of an element USAGE *{ Box-sizing: border-box; } NB: The above CSS expression should be used in the head section of all pages. This will permit the box-sizing property to be applied on all elements on the page. EXAMPLE .div1{ Border-sizing: border-box; Padding: 20px; Width: 300px; Height: 300px; Border: 2px solid red; }
  • 16. .div2{ Padding: 20px; Width: 300px; Height: 300px; Border: 2px solid red; } CHAPTER FOURTEEN: MEDIA QUERY It is used to display different styling for different screen sizes or device type Syntax @media screen and(expression){ .selector{ Property: value; } } Example @media screen and (max-width:600px){ div { Width: 30%; } } The above styling for the div will be applied only to screen sizes of 600px and smaller. @media screen and (min-width: 600px){ div { Width: 30%; } } The above styling for the div will be applied only to screen sizes of 600px and larger. CHAPTER FIFTEEN: CSS FLEX BOX