CSS Tutorial - HC
CSS Tutorial - HC
CSS, or Cascading Style Sheets, is the language used to style and enhance HTML
documents. It defines the presentation of HTML elements on a web page, enabling
changes to fonts, colors, sizes, spacing, column layouts, and animations.
In this CSS tutorial, we will cover both basic and advanced concepts, including CSS
properties, selectors, functions, media queries, and more.
What is CSS?
CSS, or Cascading Style Sheets, is a language used to style and enhance websites. It
controls how HTML elements—such as text, images, and buttons—are displayed on a
webpage. With CSS, you can adjust font sizes and colors, add backgrounds, and
manage the layout, transforming a basic webpage into a visually appealing and user-
friendly experience. CSS also simplifies layout management across multiple web pages
by using external stylesheets stored in CSS files.
Open In App
Inline: Add styles directly to HTML elements using the style attribute (limited use).
Internal: Place styles within a <style> tag inside the HTML file, usually within the
<head> section
External: Create a separate CSS file with a .css extension and link it to your HTML
file using the <link> tag.
Table of Content
Basic CSS Example
CSS Tutorial
CSS Fundamentals
CSS Styling Techniques
CSS Responsive Design and Media Queries
Advanced CSS Topics
CSS Online Quizzes
CSS Practical Projects
CSS Interview Preparation
CSS Preprocessors
CSS Frameworks
HTML CSS
<body>
<!-- Using Inline CSS -->
<h2 style="text-align: center;">Welcome To GFG</h2>
<p>CSS Tutorial - GeeksforGeeks</p>
</body>
</html>
Output:
CSS Tutorial
Introduction to CSS
Advantages and Disadvantages of CSS
▲
CSS Fundamentals Open In App
Understanding CSS basics is necessary whether you’re an experienced developer or
just starting your web journey. Let’s explore some key CSS concepts.
CSS Syntax
CSS Ruleset
CSS Selectors
CSS Element Selector
CSS Attribute Selector
CSS Id Selector
Class Selector
Universal Selector
Pseudo-Class Selector
Pseudo-Element Selector
CSS Combinators
General Sibling selector (~)
Adjacent Sibling selector (+)
Child selector (>)
Descendant selector (space)
CSS Box model
CSS Layout
Styling Text
CSS Fonts
CSS Colors
CSS Backgrounds
CSS Borders
CSS Grid
CSS Flexbox
CSS Images
CSS Lists ▲
CSS Transforms
CSS Transitions
CSS Animations
CSS Variables
CSS Properties
CSS Functions
Open In App
Getting only the theoretical knowledge will be of no use unless and until you don’t work
on some real-time projects. Working on such HTML & CSS projects will test your CSS
knowledge and you will get some hands-on experience.
CSS Preprocessors
CSS Preprocessors introduce features like variables, nesting, and mixins to enhance
the functionality, maintainability, and organization of stylesheets. Some popular
preprocessors are:
CSS Frameworks
CSS frameworks are pre-prepared libraries of CSS code and sometimes JavaScript,
designed to simplify and expedite the process of web development.
Open In App
Other Resources
CSS Versions
CSS1: The foundation, released in 1996, introduced basic styling capabilities for
fonts, colors, and margins.
CSS2: Expanded in 1998, adding positioning elements, pseudo-classes, and
improved layout options.
CSS 2.1: Further refinements in 2004, including improvements to inheritance and
box model properties.
CSS3: Introduced from 2001 onwards, CSS3 isn’t a single version but a collection of
modules adding features like animations, media queries, and web fonts. It’s
constantly evolving.
Open In App
1. Enhance Visual Appeal: CSS allows you to style your web pages, making them
visually appealing and engaging. Here’s why it matters:
User Experience (UX): Well-designed websites attract and retain users. CSS enables
you to create beautiful layouts, choose fonts, and apply colors that resonate with
your audience.
Media Queries: Adapt your layout based on screen size (desktop, tablet, mobile).
Flexbox and Grid: Create flexible, adaptive designs that look great on any device.
3. SEO Benefits: CSS indirectly impacts your site’s SEO. Here’s how:
Page Load Speed: Well-organized CSS files load faster, improving user experience.
Google considers page speed as a ranking factor.
Structured Content: Properly styled HTML (thanks to CSS) enhances readability for
search engines and users.
Mobile Friendliness: Responsive CSS ensures your site performs well on mobile
devices, positively affecting rankings.
Modularity: Separate CSS files allow easy updates without affecting other parts of
your site.
Consistency: Apply styles consistently across your site using classes and IDs.
Media Queries: Tailor website layouts for▲different screen sizes, ensuring optimal
viewing experiences across devices.
Open In App
CSS Grid and Flexbox: Revolutionize website layouts with these frameworks for
creating complexand
CSS Animations andTransitions:
responsive designs.
Add interactivity and visual flair to your webpages
with smooth animations and transitions.
CSS stands for Cascading Style Sheets. It is a style sheet language used to
describe the presentation and formatting of a document written in HTML or XML.
Inline CSS: Inline CSS contains the CSS property in the body section attached to
the element.
Internal or Embedded CSS: The CSS ruleset should be within the HTML file in
the head section i.e. the CSS is embedded within the HTML file.
External CSS: External CSS contains a separate CSS file that contains only style
properties with the help of tag attributes.
Use the <link> element within the <head> section of your HTML document.
Example: <link rel=”stylesheet” type=”text/css” href=”styles.css”>
▲
What is the purpose of the ‘box model’ in CSS?
Open In App
The box model is a fundamental concept in CSS that describes the layout of
elements. It consists of content, padding, border, and margin, which collectively
determine the size and spacing of an element.
To center horizontally, use margin: auto; on the element. For vertical centering,
consider using Flexbox (display: flex; align-items: center; justify-content: center;) or
Grid (display: grid; place-items: center;).
Margin is the space outside an element, creating space between the element and
its surrounding elements. Padding is the space inside an element, creating space
between the element’s content and its border.
GeeksforGeeks 23
Next Article
CSS Introduction
Similar Reads
Open In App
Company
About Us Languages
Python
Legal Java
In Media C++
Contact Us PHP
Advertise with us GoLang
GFG Corporate Solution SQL
Placement Training Program R Language
GeeksforGeeks Community Android Tutorial
Tutorials Archive