SlideShare a Scribd company logo
CSS
Cascading Style Sheets
 Style sheet is a collection of formatting styles,
which can be applied to a web page .
 CSS stands for Cascading Style Sheets
Styles define how to display HTML elements
Styles were added to HTML 5.0 to solve a
problem
Style sheet
The syntax of a style rule is as follows:
Selector {property:value;}
Where
Selector =any html tag
Property= attributes like font color, font size
Value= setting for the attributes
Ex: h1{color:red;}
style Rule
There 3 types of css
1. Inline css
2. Internal css
3. External css
Types of css
1. Inline css
Ex: <h1 style=“color:green”>
2. Internal css
Ex: <head>
<style>
p{color:red;}
</style>
</head>
Style sheet
3. External css
<head>
<link REl=“stylesheet” href=“filename.css”
type=“text/css”>
</head>
Style sheet
There 4 types of selector :
1. Tag (html code)
2. Class (.)
3. Id (#)
4. Universal (*)
Types of selector
Tag (html code)
Ex: h1{color:red}
Types of selector
<html>
<head>
<title>css</title>
<style> #control{color:limegreen}
</style></head>
<body>
<p id="control"> gfuigfugfu gugfufgufgufg ufg
</p> </body> </html>
Id (#)
<html>
<head>
<title>css</title>
<style>
.note{color:green; font-weight:bold}
.syntax{color:red; font-weight:Normal} </style></head>
<body>
<p class="syntax">hhfh hhflhkfhkfhlhkflfhlk hlhhfhfhh<br>
fuhfu hfofhifhihfih ihfhifhih h.</p>
<p class="note">hhfihfi hfihfi hfhfhfiohfhi hifhihh<br>
jfjfo ojfofjpojfojfojfojoj j .</p>
<h1 class="note"> welcome to online form</h1>
</body> </html>
Class (.)
* {Text-transform: uppercase;}
Universal (*)
 There 2 types
 Single line
 Multi line
/*........................
........................
......................... */
Comments
 Text- align : left, right, center, justify
 Text- transform : uppercase, lowercase ,
capitalize
 Text-indent : 2em or 20 px
 Text-decoration : underline , over line, line-
through
 Word-spacing : Normal or length
Basic elements in css
 Font - family : Calibri , Arial etc
 font – size : 5
 Font-style : Normal or italic
 Font- weight : Bold
 Font – variant : small-caps or normal
Basic elements in css (font)
 Background Image
 Background attach
 Background Repeat
 Background color
 Background Position
Background
Body {background-image: url(‘smallPic.jpg’); }
or
{background-image: url(‘smallPic.jpg’);
background-repeat: no-repeat;}
Or
{background-image: url(‘smallPic.jpg’);
background-repeat: repeat-y;}
Background Image
{ background-image: url(smallPic.jpg);
background-repeat: repeat-x;}
Or
{ background-image: url(smallPic.jpg);
background-repeat: repeat; }
Or
h4 { background-color: white; }
Or
{ background-image: url(smallPic.jpg);
background-position: top center; }
Background Image
 .solid {border-style: solid; }
 .double {border-style: double; }
 .groove {border-style: groove; }
 .dotted {border-style: dotted; }
 .dashed {border-style: dashed; }
 .inset {border-style: inset; }
 .outset {border-style: outset; }
 .ridge {border-style: ridge; }
 .hidden {border-style: hidden; }
Border Style Types
 table { border-width: 7px; border-style: outset; }
td { border-width: medium; border-style:
outset; }
p { border-width: thick; border-style: solid; }
Border Width
 table { border-color: rgb( 100, 100, 255);
border-style: dashed; }
 td { border-color: #FFBD32; border-style: ridge;
}
 p { border-color: blue; border-style: solid; }
Ex : p { border: 20px outset blue ;} h4{ border:
5px solid; } h5{ border: dotted; }
Border Color
 The CSS margin properties define the space
around elements.
Example
margin-top:100px;
margin-bottom:100px;
margin-right:50px;
margin-left:50px;
 margin:25px 50px 75px 100px;
 margin:25px 50px 75px;
 margin:25px 50px;
 margin:25px
CSS Margin
 The CSS padding properties define the space between
the element border and the element content.
 Example
padding-top:25px;
padding-bottom:25px;
padding-right:50px;
padding-left:50px;
 padding:25px 50px 75px 100px;
 padding:25px 50px 75px;
 padding:25px 50px;
 padding:25px;
CSS Padding
Css allows the web page designers to position
the web page anywhere on the web page .
There 4 types of position
 Normal
 Absolute
 Relative
 Fixed
Position Properties
 Absolute Positing
 Size properties
 Clip properties
 Z-index property
 Visibility Property
 Pseudo classes
 Pseudo elements
 Border Collapse
 List Property
 Scrollbar property
 Cursor Property
 Zoom Property
Advanced css Properties
Z-index
body{ background-color:green ;}
.e1{position:absolute ; font-size:medium ; z-
index:1;}
.e2{position:absolute ; font-size:larger ; z-
index:2; color:red ;left:5px;}
Advanced css Properties
 Absolute Position
#header {position:absolute ;
top :100px;
left:20px ;}
 Size property
.vcard{width:250px; height:150px; border:solid
thin red; background-color:pink;
padding:10px;}
Advanced css Properties
 Clip properties
.li{position:absolute ; clip:rect(0 100px 75px
40px);}
 Pseudo classes
a:link {color:white ; background-color:black;}
a:visited{color:white ; background-color:brown;}
a:hover {color: black ; background-color:white;}
a:active {color:pink ; background-color:white;}
Advanced css Properties
 Pseudo classes & Pseudo elements
p:first-letter{font-size:xx-large;font-weight:bold;}
p:first-line{font-weight:bolder;background-
color:pink;}
 List Property
ul{list-style: url('images1.jpg') inside;}
Advanced css Properties
 Visibility Property
<style type="text/css">
#image{visibility:hidden;}
</style>
 Border Collapse
Table{border-collapse:collapse;}
Advanced css Properties
 Cursor Property
body{cursor: crosshair;}
input{cursor: text;}
.addcart{cursor: hand;}
 Scrollbar Property
TextArea {scrollbar-base-color:gray ;
scrollbar-arrow-color:green ;
scrollbar-face-color:yellow ;
scrollbar-shadow-color:blue ;
scrollbar-track-color: pink ;}
Advanced css Properties
Ad

More Related Content

Similar to CSS presentation for beginners where they can understand easily (20)

CSCADING style sheet. Internal external inline
CSCADING style sheet. Internal external inlineCSCADING style sheet. Internal external inline
CSCADING style sheet. Internal external inline
Ranjeet Reddy
 
CSS
CSSCSS
CSS
People Strategists
 
Css
CssCss
Css
Vijay Raj Yanamala
 
html-css
html-csshtml-css
html-css
Dhirendra Chauhan
 
5th Lecture- WEB ENGINEERING basics.pptx
5th Lecture- WEB ENGINEERING basics.pptx5th Lecture- WEB ENGINEERING basics.pptx
5th Lecture- WEB ENGINEERING basics.pptx
Aasma13
 
CSS for basic learner
CSS for basic learnerCSS for basic learner
CSS for basic learner
Yoeung Vibol
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
Senthil Kumar
 
Web 102 INtro to CSS
Web 102  INtro to CSSWeb 102  INtro to CSS
Web 102 INtro to CSS
Hawkman Academy
 
Ict 8 css
Ict 8 cssIct 8 css
Ict 8 css
Christian Reglos
 
v5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptxv5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptx
hannahroseline2
 
v5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptxv5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptx
hannahroseline2
 
Web - CSS 1.pptx
Web - CSS 1.pptxWeb - CSS 1.pptx
Web - CSS 1.pptx
haroon451422
 
Css
CssCss
Css
actacademy
 
Css
CssCss
Css
actacademy
 
Css presentation introdution with sample basic projects
Css presentation introdution with sample basic projectsCss presentation introdution with sample basic projects
Css presentation introdution with sample basic projects
Digital Shende
 
css-note.pptx
css-note.pptxcss-note.pptx
css-note.pptx
Samay16
 
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdfcdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
hinalsomani93
 
WT CSS
WT  CSSWT  CSS
WT CSS
Mohan186867
 
Casecading Style Sheets for Hyper Text Transfer Protocol.pptx
Casecading Style Sheets for Hyper Text Transfer Protocol.pptxCasecading Style Sheets for Hyper Text Transfer Protocol.pptx
Casecading Style Sheets for Hyper Text Transfer Protocol.pptx
usmanahmadawan
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Folasade Adedeji
 
CSCADING style sheet. Internal external inline
CSCADING style sheet. Internal external inlineCSCADING style sheet. Internal external inline
CSCADING style sheet. Internal external inline
Ranjeet Reddy
 
5th Lecture- WEB ENGINEERING basics.pptx
5th Lecture- WEB ENGINEERING basics.pptx5th Lecture- WEB ENGINEERING basics.pptx
5th Lecture- WEB ENGINEERING basics.pptx
Aasma13
 
CSS for basic learner
CSS for basic learnerCSS for basic learner
CSS for basic learner
Yoeung Vibol
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
Senthil Kumar
 
v5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptxv5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptx
hannahroseline2
 
v5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptxv5-introduction to html-css-210321161444.pptx
v5-introduction to html-css-210321161444.pptx
hannahroseline2
 
Css presentation introdution with sample basic projects
Css presentation introdution with sample basic projectsCss presentation introdution with sample basic projects
Css presentation introdution with sample basic projects
Digital Shende
 
css-note.pptx
css-note.pptxcss-note.pptx
css-note.pptx
Samay16
 
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdfcdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
cdocumentsandsettingsstudentdesktopnewfolderhtmlcss-100220030010-phpapp01.pdf
hinalsomani93
 
Casecading Style Sheets for Hyper Text Transfer Protocol.pptx
Casecading Style Sheets for Hyper Text Transfer Protocol.pptxCasecading Style Sheets for Hyper Text Transfer Protocol.pptx
Casecading Style Sheets for Hyper Text Transfer Protocol.pptx
usmanahmadawan
 

More from Indu32 (12)

jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc pptjdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
Indu32
 
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
Indu32
 
Introduction to MySQL commands mysql presentation 22.pptx
Introduction to MySQL commands   mysql presentation 22.pptxIntroduction to MySQL commands   mysql presentation 22.pptx
Introduction to MySQL commands mysql presentation 22.pptx
Indu32
 
unit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connectionunit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connection
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
html webpage development different tags used
html webpage development different tags usedhtml webpage development different tags used
html webpage development different tags used
Indu32
 
design patter related ppt and presentation
design patter related ppt and presentationdesign patter related ppt and presentation
design patter related ppt and presentation
Indu32
 
Web development ppt used to design web applocation
Web development ppt  used to design web applocationWeb development ppt  used to design web applocation
Web development ppt used to design web applocation
Indu32
 
In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...
Indu32
 
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc pptjdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
Indu32
 
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
Indu32
 
Introduction to MySQL commands mysql presentation 22.pptx
Introduction to MySQL commands   mysql presentation 22.pptxIntroduction to MySQL commands   mysql presentation 22.pptx
Introduction to MySQL commands mysql presentation 22.pptx
Indu32
 
unit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connectionunit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connection
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
html webpage development different tags used
html webpage development different tags usedhtml webpage development different tags used
html webpage development different tags used
Indu32
 
design patter related ppt and presentation
design patter related ppt and presentationdesign patter related ppt and presentation
design patter related ppt and presentation
Indu32
 
Web development ppt used to design web applocation
Web development ppt  used to design web applocationWeb development ppt  used to design web applocation
Web development ppt used to design web applocation
Indu32
 
In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...
Indu32
 
Ad

Recently uploaded (20)

101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx
Prof. Hany El-Said
 
ppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptxppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptx
dondeepakff33
 
The Role of Structure and Materials in Design.pptx
The Role of Structure and Materials in Design.pptxThe Role of Structure and Materials in Design.pptx
The Role of Structure and Materials in Design.pptx
Prof. Hany El-Said
 
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
Taqyea
 
APLASTIC ANEMIA presention BY NIAZY.pptx
APLASTIC ANEMIA  presention BY NIAZY.pptxAPLASTIC ANEMIA  presention BY NIAZY.pptx
APLASTIC ANEMIA presention BY NIAZY.pptx
azizurhman200
 
uTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 VersionuTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 Version
Web Designer
 
A Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by AyonA Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by Ayon
aonbanerjee
 
Beautiful Motherhood (Kal-el's Shows Slideshow)
Beautiful Motherhood (Kal-el's Shows Slideshow)Beautiful Motherhood (Kal-el's Shows Slideshow)
Beautiful Motherhood (Kal-el's Shows Slideshow)
Kal-el's Shows
 
PPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present todayPPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present today
nikhilpanchal510
 
Unit 5 visual merchandiseing trend analysis. pdf
Unit 5 visual merchandiseing  trend analysis. pdfUnit 5 visual merchandiseing  trend analysis. pdf
Unit 5 visual merchandiseing trend analysis. pdf
NaziaFarheen13
 
Presentation 11.pptx presentation.......
Presentation 11.pptx presentation.......Presentation 11.pptx presentation.......
Presentation 11.pptx presentation.......
aashrithakondapalli8
 
Presentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptxPresentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptx
sandeepkushwahag2000
 
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's WorkPWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
INKPPT
 
The Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptxThe Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptx
Prof. Hany El-Said
 
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
officialpino35
 
Carte d'indentité1 a model for a nes country
Carte d'indentité1 a model for a nes countryCarte d'indentité1 a model for a nes country
Carte d'indentité1 a model for a nes country
stephaniethomas940921
 
Traceability and Uncertainty of measurement
Traceability and Uncertainty of measurementTraceability and Uncertainty of measurement
Traceability and Uncertainty of measurement
artiaghera85
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
UXPA Boston
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx
Prof. Hany El-Said
 
ppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptxppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptx
dondeepakff33
 
The Role of Structure and Materials in Design.pptx
The Role of Structure and Materials in Design.pptxThe Role of Structure and Materials in Design.pptx
The Role of Structure and Materials in Design.pptx
Prof. Hany El-Said
 
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
毕业完成信意大利ABAFG毕业证福贾美术学院学历认证范本成绩单
Taqyea
 
APLASTIC ANEMIA presention BY NIAZY.pptx
APLASTIC ANEMIA  presention BY NIAZY.pptxAPLASTIC ANEMIA  presention BY NIAZY.pptx
APLASTIC ANEMIA presention BY NIAZY.pptx
azizurhman200
 
uTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 VersionuTorrent Pro Crack Download for PC [Latest] 2025 Version
uTorrent Pro Crack Download for PC [Latest] 2025 Version
Web Designer
 
A Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by AyonA Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by Ayon
aonbanerjee
 
Beautiful Motherhood (Kal-el's Shows Slideshow)
Beautiful Motherhood (Kal-el's Shows Slideshow)Beautiful Motherhood (Kal-el's Shows Slideshow)
Beautiful Motherhood (Kal-el's Shows Slideshow)
Kal-el's Shows
 
PPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present todayPPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present today
nikhilpanchal510
 
Unit 5 visual merchandiseing trend analysis. pdf
Unit 5 visual merchandiseing  trend analysis. pdfUnit 5 visual merchandiseing  trend analysis. pdf
Unit 5 visual merchandiseing trend analysis. pdf
NaziaFarheen13
 
Presentation 11.pptx presentation.......
Presentation 11.pptx presentation.......Presentation 11.pptx presentation.......
Presentation 11.pptx presentation.......
aashrithakondapalli8
 
Presentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptxPresentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptx
sandeepkushwahag2000
 
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's WorkPWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
PWC – Workforce of the Future 2030 | Four Scenarios Shaping Tomorrow's Work
INKPPT
 
The Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptxThe Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptx
Prof. Hany El-Said
 
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
officialpino35
 
Carte d'indentité1 a model for a nes country
Carte d'indentité1 a model for a nes countryCarte d'indentité1 a model for a nes country
Carte d'indentité1 a model for a nes country
stephaniethomas940921
 
Traceability and Uncertainty of measurement
Traceability and Uncertainty of measurementTraceability and Uncertainty of measurement
Traceability and Uncertainty of measurement
artiaghera85
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
We Trust AI... Until We Don’t_ The UX of Comfort Zones by Dan Maccarone and P...
UXPA Boston
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
Ad

CSS presentation for beginners where they can understand easily

  • 2.  Style sheet is a collection of formatting styles, which can be applied to a web page .  CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 5.0 to solve a problem Style sheet
  • 3. The syntax of a style rule is as follows: Selector {property:value;} Where Selector =any html tag Property= attributes like font color, font size Value= setting for the attributes Ex: h1{color:red;} style Rule
  • 4. There 3 types of css 1. Inline css 2. Internal css 3. External css Types of css
  • 5. 1. Inline css Ex: <h1 style=“color:green”> 2. Internal css Ex: <head> <style> p{color:red;} </style> </head> Style sheet
  • 6. 3. External css <head> <link REl=“stylesheet” href=“filename.css” type=“text/css”> </head> Style sheet
  • 7. There 4 types of selector : 1. Tag (html code) 2. Class (.) 3. Id (#) 4. Universal (*) Types of selector
  • 8. Tag (html code) Ex: h1{color:red} Types of selector
  • 10. <html> <head> <title>css</title> <style> .note{color:green; font-weight:bold} .syntax{color:red; font-weight:Normal} </style></head> <body> <p class="syntax">hhfh hhflhkfhkfhlhkflfhlk hlhhfhfhh<br> fuhfu hfofhifhihfih ihfhifhih h.</p> <p class="note">hhfihfi hfihfi hfhfhfiohfhi hifhihh<br> jfjfo ojfofjpojfojfojfojoj j .</p> <h1 class="note"> welcome to online form</h1> </body> </html> Class (.)
  • 12.  There 2 types  Single line  Multi line /*........................ ........................ ......................... */ Comments
  • 13.  Text- align : left, right, center, justify  Text- transform : uppercase, lowercase , capitalize  Text-indent : 2em or 20 px  Text-decoration : underline , over line, line- through  Word-spacing : Normal or length Basic elements in css
  • 14.  Font - family : Calibri , Arial etc  font – size : 5  Font-style : Normal or italic  Font- weight : Bold  Font – variant : small-caps or normal Basic elements in css (font)
  • 15.  Background Image  Background attach  Background Repeat  Background color  Background Position Background
  • 16. Body {background-image: url(‘smallPic.jpg’); } or {background-image: url(‘smallPic.jpg’); background-repeat: no-repeat;} Or {background-image: url(‘smallPic.jpg’); background-repeat: repeat-y;} Background Image
  • 17. { background-image: url(smallPic.jpg); background-repeat: repeat-x;} Or { background-image: url(smallPic.jpg); background-repeat: repeat; } Or h4 { background-color: white; } Or { background-image: url(smallPic.jpg); background-position: top center; } Background Image
  • 18.  .solid {border-style: solid; }  .double {border-style: double; }  .groove {border-style: groove; }  .dotted {border-style: dotted; }  .dashed {border-style: dashed; }  .inset {border-style: inset; }  .outset {border-style: outset; }  .ridge {border-style: ridge; }  .hidden {border-style: hidden; } Border Style Types
  • 19.  table { border-width: 7px; border-style: outset; } td { border-width: medium; border-style: outset; } p { border-width: thick; border-style: solid; } Border Width
  • 20.  table { border-color: rgb( 100, 100, 255); border-style: dashed; }  td { border-color: #FFBD32; border-style: ridge; }  p { border-color: blue; border-style: solid; } Ex : p { border: 20px outset blue ;} h4{ border: 5px solid; } h5{ border: dotted; } Border Color
  • 21.  The CSS margin properties define the space around elements. Example margin-top:100px; margin-bottom:100px; margin-right:50px; margin-left:50px;  margin:25px 50px 75px 100px;  margin:25px 50px 75px;  margin:25px 50px;  margin:25px CSS Margin
  • 22.  The CSS padding properties define the space between the element border and the element content.  Example padding-top:25px; padding-bottom:25px; padding-right:50px; padding-left:50px;  padding:25px 50px 75px 100px;  padding:25px 50px 75px;  padding:25px 50px;  padding:25px; CSS Padding
  • 23. Css allows the web page designers to position the web page anywhere on the web page . There 4 types of position  Normal  Absolute  Relative  Fixed Position Properties
  • 24.  Absolute Positing  Size properties  Clip properties  Z-index property  Visibility Property  Pseudo classes  Pseudo elements  Border Collapse  List Property  Scrollbar property  Cursor Property  Zoom Property Advanced css Properties
  • 25. Z-index body{ background-color:green ;} .e1{position:absolute ; font-size:medium ; z- index:1;} .e2{position:absolute ; font-size:larger ; z- index:2; color:red ;left:5px;} Advanced css Properties
  • 26.  Absolute Position #header {position:absolute ; top :100px; left:20px ;}  Size property .vcard{width:250px; height:150px; border:solid thin red; background-color:pink; padding:10px;} Advanced css Properties
  • 27.  Clip properties .li{position:absolute ; clip:rect(0 100px 75px 40px);}  Pseudo classes a:link {color:white ; background-color:black;} a:visited{color:white ; background-color:brown;} a:hover {color: black ; background-color:white;} a:active {color:pink ; background-color:white;} Advanced css Properties
  • 28.  Pseudo classes & Pseudo elements p:first-letter{font-size:xx-large;font-weight:bold;} p:first-line{font-weight:bolder;background- color:pink;}  List Property ul{list-style: url('images1.jpg') inside;} Advanced css Properties
  • 29.  Visibility Property <style type="text/css"> #image{visibility:hidden;} </style>  Border Collapse Table{border-collapse:collapse;} Advanced css Properties
  • 30.  Cursor Property body{cursor: crosshair;} input{cursor: text;} .addcart{cursor: hand;}  Scrollbar Property TextArea {scrollbar-base-color:gray ; scrollbar-arrow-color:green ; scrollbar-face-color:yellow ; scrollbar-shadow-color:blue ; scrollbar-track-color: pink ;} Advanced css Properties
  翻译: