BREAKING NEWS

Breaking News
📢 Latest Job & Exam Updates — CareerInformationPortal.in 🔥 नवीन नियुक्ति और परीक्षा सूचना: 1️⃣ Bank of India Apprentice Online Form 2025 👉 बैंक ऑफ इंडिया में अप्रेंटिस भर्ती के लिए ऑनलाइन फॉर्म शुरू। 2️⃣ RRC NR Apprentice Online Form 2025 👉 रेलवे रिक्रूटमेंट सेल नॉर्दर्न रेलवे में अप्रेंटिस पदों के लिए आवेदन जारी। 3️⃣ BEML Limited Officer Recruitment 2025 👉 BEML लिमिटेड में ऑफिसर ग्रेड पदों के लिए भर्ती विज्ञापन जारी। 4️⃣ CBSE New Guidelines 2025-26 👉 सीबीएसई द्वारा 2025-26 के लिए नए दिशा-निर्देश प्रकाशित। 5️⃣ UP Home Guard Exam Date 2025 👉 उत्तर प्रदेश होम गार्ड परीक्षा की तारीख जारी! 6️⃣ Outsource Vacancy 👉 कारियर इंफॉर्मेशन पोर्टल पर आउटसोर्सिंग से जुड़ी नवीन रिक्तियाँ। 7️⃣ Books & Study Material 👉 उपयोगी किताबें और स्टडी मटेरियल डाउनलोड/देखें। 📌 पूरा विवरण यहाँ देखें: 🔗 https://www.careerinformationportal.in ✨ अधिक अपडेट्स और नोटिफिकेशन के लिए इस ग्रुप/संबंधित चैनल को सहेजें।,🙏
LATEST JOB IN MONTH
Today Announcements:
Today Announcements:
• United India Insurance UIIC Apprentice Recruitment 2026 [153 Post] Apply OnlineApply Now• Engineers India Limited Recruitment 2025 Apply OnlineApply Now• RPSC Protection Officer Recruitment 2026, Eligibility, Fee, Last Date, Apply OnlineApply Now• UP Home Guard Correction/ Edit Form 2025 [Direct Link]Apply Now• RRB Section Controller Application Status 2025 Out Check for 368 PostApply Now• Bank of India Credit Office Recruitment 2025 {514 Post} Apply OnlineApply Now• DSSSB MTS Recruitment 2026 [714 Post] Apply Online, Multi Tasking StaffApply Now• RRB Isolated Categories Recruitment 2026 (311 Post) Apply OnlineApply Now
FM Rainbow India Live Radio | Online सुनें मुफ्त

FM Rainbow India - Live Radio

Click the button below to play or pause the live stream directly on this page.

NEW UPDATE IN CAREER INFORAMTION PORTAL

Bank of India Apprentice Recruitment 2025–26 | Apply Online 10 January 2026

Bank of India Apprentice Online Form 2025 – 400 Posts B Bank of India Apprentice...

Sample Papers 2025-26

CAREER UPDATE

Tuesday, September 30, 2025

CSS Fundamentals

CSS Fundamentals

CSS Fundamentals

 

CSS Fundamentals: A Comprehensive Guide

Introduction to CSS

Cascading Style Sheets (CSS) is a stylesheet language used to control the presentation and layout of web pages written in HTML or XML. While HTML provides the structure and content of a webpage, CSS defines how that content looks, including colors, fonts, layouts, and visual effects. CSS allows developers to separate content from design, making websites more maintainable, scalable, and visually appealing.

What is CSS Used For?

CSS is used to:

  • Style Web Content: Apply colors, fonts, sizes, and spacing to text, images, and other elements.
  • Control Layout: Arrange elements on a page using techniques like Flexbox, Grid, or floats.
  • Enhance User Experience: Add animations, transitions, and hover effects for interactivity.
  • Ensure Consistency: Apply uniform styling across multiple pages of a website.
  • Support Responsiveness: Adapt layouts for different devices, such as mobiles, tablets, and desktops.

Where is CSS Used?

CSS is integral to:

  • Websites: From personal blogs to corporate sites, CSS styles every modern webpage.
  • Web Applications: Used in apps like Gmail or Trello to create user-friendly interfaces.
  • Email Templates: CSS styles HTML-based emails for consistent rendering.
  • Mobile Apps: Frameworks like Ionic use CSS for styling hybrid apps.
  • Content Management Systems (CMS): Platforms like WordPress rely on CSS for theme customization.

Why Learn CSS?

Learning CSS is essential because:

  • It transforms plain HTML into visually engaging websites.
  • It’s beginner-friendly with a straightforward syntax.
  • It integrates with HTML and JavaScript for dynamic web development.
  • It’s a prerequisite for advanced tools like Bootstrap, Tailwind CSS, or Sass.
  • It empowers developers to create responsive and accessible designs.

Core Concepts of CSS

CSS works by selecting HTML elements and applying styles to them. Styles are defined using rulesets, which consist of a selector and a declaration block.

CSS Syntax

A CSS rule looks like this:

selector {
    property: value;
}
  • Selector: Targets the HTML element(s) to style (e.g., p, .class, #id).
  • Property: The aspect of the element to style (e.g., color, font-size).
  • Value: The specific setting for the property (e.g., blue, 16px).

Example:

p {
    color: navy;
    font-size: 16px;
}

This styles all <p> elements with navy text and a 16-pixel font size.

Ways to Apply CSS

CSS can be applied to HTML in three ways:

  1. Inline CSS: Styles are added directly in the HTML element using the style attribute.

    <p style="color: red; font-size: 14px;">Inline styled text</p>
    

    Use sparingly, as it’s hard to maintain.

  2. Internal CSS: Styles are defined within a <style> tag in the HTML <head>.

    <head>
        <style>
            p {
                color: green;
                font-size: 18px;
            }
        </style>
    </head>
    

    Suitable for single-page projects.

  3. External CSS: Styles are written in a separate .css file and linked to HTML using <link>.

    <head>
        <link rel="stylesheet" href="styles.css">
    </head>
    

    Best for large projects, as it promotes reusability and maintainability.

CSS Selectors

Selectors target HTML elements for styling. Common types include:

  • Element Selector: Targets all instances of an HTML tag.
    h1 {
        color: blue;
    }
    
  • Class Selector: Targets elements with a specific class attribute (denoted by .).
    .highlight {
        background-color: yellow;
    }
    
    <p class="highlight">Highlighted text</p>
    
  • ID Selector: Targets a single element with a unique id (denoted by #).
    #main-header {
        font-size: 24px;
    }
    
    <h1 id="main-header">Main Title</h1>
    
  • Universal Selector: Targets all elements (*).
    * {
        margin: 0;
        padding: 0;
    }
    
  • Attribute Selector: Targets elements based on attributes.
    input[type="text"] {
        border: 1px solid black;
    }
    

The Cascade and Specificity

The "Cascading" in CSS refers to how styles are prioritized when multiple rules apply to the same element. CSS follows these rules:

  • Specificity: More specific selectors take precedence (e.g., #id > .class > element).
  • Order: Later rules override earlier ones if specificity is equal.
  • !important: Overrides all other rules (use cautiously).
    p {
        color: blue !important;
    }
    

Example:

p {
    color: red;
}
.text {
    color: green;
}
#special {
    color: blue;
}
<p id="special" class="text">This text will be blue</p>

Here, #special has the highest specificity, so the text is blue.

Inheritance

Some CSS properties (e.g., color, font-family) are inherited by child elements from their parents, while others (e.g., border, margin) are not.

body {
    font-family: Arial, sans-serif;
}

All elements inside <body> (e.g., <p>, <h1>) inherit the font unless overridden.

Common CSS Properties

CSS offers a wide range of properties to style elements. Here are the most commonly used categories:

1. Text Styling

  • color: Sets text color (e.g., red, #FF0000, rgb(255, 0, 0)).
  • font-family: Specifies the font (e.g., Arial, sans-serif).
  • font-size: Sets text size (e.g., 16px, 1rem).
  • font-weight: Controls text boldness (e.g., normal, bold, 700).
  • text-align: Aligns text (e.g., left, center, right).
  • text-decoration: Adds effects like underlines (e.g., underline, none).

Example:

p {
    color: #333;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    text-align: justify;
}

2. Box Model

The CSS box model represents the structure of every HTML element as a rectangular box with:

  • Content: The actual content (text, images).
  • Padding: Space between content and border.
  • Border: Surrounds padding.
  • Margin: Space outside the border.

Properties:

  • width, height: Set the size of the content area.
  • padding: Adds inner spacing (e.g., padding: 10px).
  • border: Defines a border (e.g., border: 1px solid black).
  • margin: Adds outer spacing (e.g., margin: 20px).

Example:

div {
    width: 200px;
    padding: 15px;
    border: 2px solid blue;
    margin: 10px;
}

3. Backgrounds

  • background-color: Sets the background color.
  • background-image: Adds an image.
  • background-repeat: Controls image repetition (e.g., repeat, no-repeat).
  • background-position: Positions the image.
  • background-size: Controls image size (e.g., cover, contain).

Example:

body {
    background-color: #f0f0f0;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

4. Positioning

Controls where elements appear on the page:

  • position: Defines positioning type (static, relative, absolute, fixed, sticky).
  • top, right, bottom, left: Adjust element position.
  • z-index: Controls stacking order.

Example:

.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
}

5. Display and Visibility

  • display: Controls element rendering (e.g., block, inline, inline-block, none).
  • visibility: Shows or hides elements (e.g., visible, hidden).
  • opacity: Sets transparency (0 to 1).

Example:

.hidden {
    display: none;
}
.transparent {
    opacity: 0.5;
}

6. Flexbox

Flexbox is a layout model for arranging elements in a flexible, one-dimensional way.

  • display: flex: Enables Flexbox.
  • flex-direction: Sets the direction (row, column).
  • justify-content: Aligns items along the main axis (space-between, center).
  • align-items: Aligns items along the cross axis (center, stretch).

Example:

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

7. CSS Grid

Grid is a two-dimensional layout system for rows and columns.

  • display: grid: Enables Grid.
  • grid-template-columns: Defines column sizes.
  • grid-gap: Sets spacing between grid items.

Example:

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

How CSS is Used

CSS is applied to HTML documents to enhance their appearance and functionality:

  1. Authoring: Developers write CSS in text editors or IDEs (e.g., VS Code, Sublime Text).
  2. Linking: CSS is linked to HTML via <link> or included inline/internal.
  3. Rendering: Browsers interpret CSS to style the HTML content.
  4. Debugging: Tools like Chrome DevTools help inspect and modify CSS in real-time.

Tools for Writing CSS

  • Text Editors: VS Code, Atom, Notepad++.
  • IDEs: WebStorm, Visual Studio.
  • Online Editors: CodePen, JSFiddle.
  • Browser Tools: Chrome DevTools, Firefox Developer Tools.

Benefits of CSS

  • Separation of Concerns: Keeps content (HTML) separate from design (CSS).
  • Reusability: External stylesheets can be reused across multiple pages.
  • Maintainability: Easy to update styles across an entire site.
  • Responsiveness: Media queries enable device-specific styling.
  • Accessibility: Proper CSS enhances usability for screen readers.

Limitations of CSS

  • Browser Compatibility: Some properties may not work consistently across browsers.
  • Complexity: Advanced layouts or animations can be challenging.
  • No Logic: CSS cannot perform calculations or dynamic logic (unlike JavaScript).

CSS Example: Styling a Simple Web Page

Here’s a practical example combining HTML and CSS to create a styled webpage with a header, navigation, content, and footer.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Demo Page</title>
    <style>
        /* Reset default margins and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body styling */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
        }

        /* Header styling */
        header {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }

        header h1 {
            font-size: 2em;
        }

        /* Navigation styling */
        nav {
            background-color: #444;
            padding: 10px;
        }

        nav ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        /* Main content styling */
        main {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        section {
            margin-bottom: 20px;
        }

        section h2 {
            color: #333;
            margin-bottom: 10px;
        }

        /* Form styling */
        form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        input[type="text"], input[type="email"] {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        input[type="submit"] {
            padding: 10px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        input[type="submit"]:hover {
            background-color: #555;
        }

        /* Footer styling */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            position: relative;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to My Website</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#about">About</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section id="about">
            <h2>About Us</h2>
            <p>This is a sample website demonstrating CSS fundamentals.</p>
        </section>
        <section id="contact">
            <h2>Contact Us</h2>
            <form>
                <input type="text" name="name" placeholder="Your Name" required>
                <input type="email" name="email" placeholder="Your Email" required>
                <input type="submit" value="Send">
            </form>
        </section>
    </main>
    <footer>
        <p>Created on September 30, 2025</p>
    </footer>
</body>
</html>

Explanation of the Example

  • HTML Structure: The page includes a header with navigation, a main section with "About" and "Contact" sections, and a footer.
  • CSS Styling:
    • Reset: * { margin: 0; padding: 0; box-sizing: border-box; } ensures consistent rendering.
    • Body: Sets a light background and font.
    • Header: Dark background with centered text.
    • Navigation: Uses Flexbox for horizontal menu alignment and hover effects.
    • Main: Centered content with a white background, shadow, and rounded corners.
    • Form: Styled inputs and button with hover effects.
    • Footer: Simple dark footer with centered text.

How to Run the Example

  1. Copy the code into a text editor.
  2. Save it as index.html.
  3. Open it in a web browser to view the styled page.

Advanced CSS Concepts

While this guide focuses on fundamentals, here are advanced topics for further exploration:

  • Media Queries: For responsive design.
    @media (max-width: 600px) {
        main {
            padding: 10px;
        }
    }
    
  • Transitions and Animations: For dynamic effects.
    button {
        transition: background-color 0.3s;
    }
    button:hover {
        background-color: #555;
    }
    
  • CSS Variables: For reusable values.
    :root {
        --primary-color: #333;
    }
    button {
        background-color: var(--primary-color);
    }
    
  • Pseudo-Classes and Pseudo-Elements: For advanced styling (e.g., :hover, ::before).

Best Practices for Writing CSS

  • Use External Stylesheets: For maintainability and reusability.
  • Organize Code: Group related styles and use comments.
    /* Navigation Styles */
    nav { ... }
    
  • Avoid Overusing !important: It complicates debugging.
  • Test Responsiveness: Use media queries for mobile-friendly designs.
  • Optimize Performance: Minimize CSS file size by removing unused styles.
  • Ensure Accessibility: Use sufficient color contrast and readable fonts.

Common Mistakes to Avoid

  • Overly Specific Selectors: Avoid deep nesting (e.g., div ul li a).
  • Inline CSS: Limits scalability; use external stylesheets instead.
  • Ignoring Browser Compatibility: Test across browsers using tools like CanIUse.
  • Not Using Shorthand: Use margin: 10px instead of setting margin-top, margin-right, etc., separately.

Real-World Applications

CSS is used in:

  • E-Commerce: Styling product grids and checkout forms (e.g., Amazon).
  • Social Media: Creating dynamic layouts for feeds (e.g., Twitter).
  • Portfolios: Designing visually appealing personal websites.
  • Dashboards: Styling data visualizations in web apps.

Learning Resources

  • W3Schools: Beginner-friendly tutorials (www.w3schools.com).
  • MDN Web Docs: Detailed CSS documentation (developer.mozilla.org).
  • CSS-Tricks: Practical tips and guides (css-tricks.com).
  • FreeCodeCamp: Interactive CSS challenges (www.freecodecamp.org).
  • Books: “CSS Secrets” by Lea Verou for advanced techniques.

Conclusion

CSS is a powerful tool for transforming plain HTML into visually appealing and functional web pages. By mastering CSS fundamentals, you can create responsive, accessible, and user-friendly designs. The example provided demonstrates practical CSS usage, and with practice, you can explore advanced features like animations, Grid, and preprocessors like Sass. Start experimenting with small projects to build confidence and enhance your web development skills.


"Contact Us – Social Media"

Sarkari Result

Official Education Portal Header
Official Education Information Portal
MP GK Education Portal
MP GK – Madhya Pradesh General Knowledge
For MPPSC | MP Police | Patwari | Vyapam | School Exams