Recommended
PPTX
UNIT – III - CASCADING STYLING SHEET - FUNDAMENTAL OF COMPUTER PROGRAMMING
PPT
PPTX
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
PPTX
PPTX
Cordova training - Day 2 Introduction to CSS 3
PPT
PPTX
PPTX
CSS Walktrough Internship Course
PPTX
WEB TECHNOLOGY Unit-2.pptx
PPTX
UNIT 3WOP fgfufhbuiibpvihbvpihivbhibvipuuvbiuvboi
PPTX
PPTX
GDG CSS TECH WINTER BREAK VIEW PPT.pptxx
PPTX
GDG CSS TECH WINTER BREAK VIEW PPT.pptxx
PPT
gdg_workshop 4 on web development HTML & CSS
PPTX
CSS INtroductory Course for Beginners.pptx
PPTX
Introduction-to-Web-Development how Web development looks
PDF
Introducing CSS: The Language Behind Web Design
PPTX
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
PPTX
cascading style sheet powerpoint notes.pptx
PPT
6 css week12 2020 2021 for g10
PPTX
PPSX
CSS Comprehensive Overview
PPTX
PPT
PDF
CascadingStyleSheets in ONESHOT By DeathCodeYT .pdf
PDF
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
PPT
DOCX
DOCX
TOXICITY AND ITS MANAGEMENT 6th sem unit 5, PHARMACOLOGY-III B. PHARMACY
PDF
Basics of Systematic Literature Search - Nasra Gathoni
More Related Content
PPTX
UNIT – III - CASCADING STYLING SHEET - FUNDAMENTAL OF COMPUTER PROGRAMMING
PPT
PPTX
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
PPTX
PPTX
Cordova training - Day 2 Introduction to CSS 3
PPT
PPTX
PPTX
CSS Walktrough Internship Course
Similar to CSS_Coding_Presentation for Basic information.pptx
PPTX
WEB TECHNOLOGY Unit-2.pptx
PPTX
UNIT 3WOP fgfufhbuiibpvihbvpihivbhibvipuuvbiuvboi
PPTX
PPTX
GDG CSS TECH WINTER BREAK VIEW PPT.pptxx
PPTX
GDG CSS TECH WINTER BREAK VIEW PPT.pptxx
PPT
gdg_workshop 4 on web development HTML & CSS
PPTX
CSS INtroductory Course for Beginners.pptx
PPTX
Introduction-to-Web-Development how Web development looks
PDF
Introducing CSS: The Language Behind Web Design
PPTX
CSS – CASCADING STYLE SHEET - MY_PPT.pptx
PPTX
cascading style sheet powerpoint notes.pptx
PPT
6 css week12 2020 2021 for g10
PPTX
PPSX
CSS Comprehensive Overview
PPTX
PPT
PDF
CascadingStyleSheets in ONESHOT By DeathCodeYT .pdf
PDF
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
PPT
DOCX
Recently uploaded
DOCX
TOXICITY AND ITS MANAGEMENT 6th sem unit 5, PHARMACOLOGY-III B. PHARMACY
PDF
Basics of Systematic Literature Search - Nasra Gathoni
PDF
Nutrients & Role in Horticulture.pdf, Dr. Sharad Bisen Horticulture
PDF
DHA OPTOMETRY MCQ Question /HAAD/MOH.pdf
PPTX
Campfens "The Data Qualify Challenge: Publishers, institutions, and funders r...
PPTX
Cost of Capital - Cost of Equity, Cost of debenture, Cost of Preference share...
PPTX
CLASS -9 POLITICAL SCIENCE PPT CHAPTER -5 DEMOCRATIC RIGHTS.pptx
PPTX
MACSYMA introduction,working,application
PDF
The Tale of Melon City poem ppt by Sahasra
PPTX
Role of the Uninstall Hook in Odoo 18 Module Cleanup
PDF
Models of Teaching - TNTEU - B.Ed I Semester - Teaching and Learning - BD1TL ...
PDF
The Pity of War: Form, Fragment, and the Artificial Echo | Understanding War ...
PPTX
Details of Muscular-and-Nervous-Tissues.pptx
PPTX
What is the Post load hook in Odoo 18
PPTX
SOCIAL SYSTEM.......................pptx
PDF
Types of Vegetable Gardens, College of Agriculture Balaghat.pdf
PPTX
ELEMENTS OF COMMUNICATION (UNIT 2) .pptx
PPTX
ICH Harmonization A Global Pathway to Unified Drug Regulation.pptx
PDF
Projecte de la porta d'i5B: Els animals marins
PDF
All Students Workshop 25 Yoga Wellness by LDMMIA
CSS_Coding_Presentation for Basic information.pptx 1. CSS Coding
• An introduction to CSS (Cascading Style Sheets) for styling web pages.
• Prepared for: Students
• Presented by: Shuvojeet Biswas
2. What is CSS?
• • CSS stands for Cascading Style Sheets.
• • Used to style and layout HTML elements on web pages.
• • Separates content (HTML) from design (CSS).
3. Why Use CSS?
• • Enhances visual presentation of websites.
• • Controls layout, colors, fonts, spacing, and more.
• • Makes websites responsive and user-friendly.
4. CSS Syntax
• • CSS rules have a selector and a declaration block.
• • Example:
• selector { property: value; }
5. Selectors in CSS
• • Element selectors (e.g., h1, p)
• • Class selectors (e.g., .classname)
• • ID selectors (e.g., #idname)
• • Attribute and pseudo-class selectors
6. CSS Properties
• • Text properties: color, font-size, font-family
• • Box properties: width, height, margin, padding, border
• • Background properties: background-color, background-image
• • Layout properties: display, position, float
7. Colors in CSS
• • Named colors (e.g., red, blue)
• • Hex codes (e.g., #ff0000)
• • RGB/RGBA (e.g., rgb(255,0,0))
• • HSL/HSLA (e.g., hsl(0,100%,50%))
8. Fonts and Text
• • font-family, font-size, font-weight, font-style
• • text-align, text-decoration, line-height
• • Using web fonts with @font-face
9. Box Model
• • Every HTML element is a rectangular box.
• • Components: content, padding, border, margin
• • Important for spacing and layout.
10. Positioning
• • position: static, relative, absolute, fixed, sticky
• • top, right, bottom, left properties
• • z-index for stacking order
11. Flexbox
• • Flexible layout module for aligning items.
• • display: flex
• • justify-content, align-items, flex-direction
• • Makes responsive layouts easier
12. Grid Layout
• • CSS Grid is for two-dimensional layouts.
• • display: grid
• • grid-template-columns, grid-template-rows
• • grid-gap, place-items
13. Responsive Design
• • Makes websites look good on all devices.
• • Media queries: @media (max-width: 768px) { ... }
• • Flexible images, fluid layouts
14. 15. Conclusion
• • CSS is essential for modern web design.
• • Mastering selectors, properties, and layouts improves web development
skills.
• • Practice and experimentation are key to learning CSS.