GithubHelp home page GithubHelp logo

devinterview-io / css-interview-questions Goto Github PK

View Code? Open in Web Editor NEW
90.0 3.0 29.0 26 KB

๐ŸŸฃ CSS interview questions and answers to help you prepare for your next technical interview in 2024.

css css-interview-questions coding-interview-questions coding-interviews css-questions interview-practice interview-prep interview-preparation leetcode-questions leetcode-solutions

css-interview-questions's Introduction

100 Fundamental CSS Interview Questions

web-and-mobile-development

You can also find all 100 answers here ๐Ÿ‘‰ Devinterview.io - CSS


1. What does CSS stand for and what is its primary use?

Cascading Style Sheets (CSS) is primarily designed to separate web page content from its visual presentation. This allows for a consistent and adaptable design across multiple web pages.

Key Concepts

  • Selectors: Elements to which the style rules apply.
  • Properties: Visual features, such as font-size, color, and background.
  • Values: Specific settings for properties, like 'red' for the color property.

Visual Example

Here is the HTML code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Example</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to Our Site</h1>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>
    <section>
        <h2>Latest News</h2>
        <article>
            <h3>Breaking News: Big Event Tomorrow</h3>
            <p>Join us for our biggest event of the year!</p>
        </article>
    </section>
    <footer>
        &copy; 2022 YourSite
    </footer>
</body>
</html>

And, here is the accompanying CSS in styles.css:

/* Targeting all text on the page */
body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f4f4f4;
}

/* Targeting the header elements */
header {
  background-color: #1e90ff;
  padding: 1em 0;
  text-align: center;
}

/* Targeting the nav elements */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Targeting the nav links */
nav a {
  text-decoration: none;
  color: #fff;
  margin: 0 10px;
}

/* Targeting the main section */
section {
  padding: 20px;
}

/* Targeting the footer element */
footer {
  text-align: center;
  margin-top: 50px;
  padding: 10px;
  background-color: #1e90ff;
  color: #fff;
}

2. How do you include CSS in your HTML document?

There are four primary methods to incorporate CSS in an HTML document, each presenting unique advantages and use cases.

Methods of CSS Integration

  1. Inline Style: Directly insert CSS rules within HTML tags.
  2. Embedded Style: Encompass CSS within the HTML document's <head> section.
  3. External Style Sheet: Create a standalone .css file to be referenced in the HTML.
  4. Imported Style Sheet: Employ @import within a <style> tag or a CSS file to bring in other CSS files.

Key Considerations

  • Specificity: The degree of influence a selector has over others.
  • Reuse: The potential to apply the same CSS rules across multiple elements.
  • Maintainability: The ease with which one can update and manage the CSS.

Best Practices

  • Ideally, Choose a Single Method: Mixing techniques can complicate maintenance and understanding.
  • Inline Styles for Quick Changes: Useful when rapid style modifications are necessary.

HTML Code Example: Methods Northwind.CSS

Here is the HTML code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="mystyle.css">
    <title>Document</title>
</head>
    <style>
        h1, h2, p {
            color: green;
        }
        
        div {
            border: 1px solid black;
        }
    </style>
<body>
    <h1>My Header</h1>
    <p>Hello, World!</p>
</body>
</html>

3. Can you explain the difference between class and ID selectors?

Class and ID selectors in CSS serve distinct roles and have limitations in their applicability.

Selectivity and Applicability

  • Class Selector (`.classname{...}`): Matches multiple elements that share the same class attribute. These elements can belong to various HTML tags (e.g., <div>, <p>).

  • ID Selector (#idName{...}): Identifies a single unique element based on its unique ID attribute. While it's still possible to style multiple elements with the same ID, best practices mandate unique IDs for effective CSS usage.

Efficiency and Performance

  • Class Selector: Generally faster to compute than ID selectors in modern browsers, particularly when applied to a large number of elements.

  • ID Selector: Formerly superior in terms of speed, contemporary browsers mitigate this difference.

Common Use Cases

  • Class Selector: Ideal for styling groups of elements based on shared attributes or type.

  • ID Selector: Typically reserved for unique elements that require highly specific styling or JavaScript manipulation. While it's valid to use an ID for styling, as stated in the HTML5 specification, it's generally more maintainable to reserve the use of IDs for uniquely identifiable elements and use classes for styling.

Code Example: Class and ID Selectors

Here is the HTML code:

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="styles.css" />
  </head>
  <body>
    <div class="content">Content 1</div>
    <div class="content">Content 2</div>
    <div class="content" id="uniqueContent">Special Content</div>
  </body>
</html>

Here is the CSS code:

/* Styles applied using class selectors */
.content { color: blue; }

/* Styles applied using ID selector */
#uniqueContent { color: red; }

4. What are pseudo-classes in CSS?

Pseudo-classes are special keywords in CSS that allow you to apply styles to elements based not only on their state or position in the document tree but also on user interaction.

Categories of Pseudo-Classes

  • Dynamic Pseudo-classes: These appear as the user interacts with an element. For instance, :hover is activated when the user hovers the cursor over an element.

  • User-action Pseudo-classes: These capture actions taken by the user, such as :checked for input elements that are selected.

  • Relationship Pseudo-classes: These pertain to the document tree's hierarchical structure, like :first-child for an element that's the first child within its parent.

  • Language Pseudo-Classes: These cater to elements displayed in specific languages, for example :dir().

  • Input Control Pseudo-Classes: Designed specifically for interactive elements, these pseudo-classes style form controls like buttons, inputs, and text areas. Some examples are :default, :valid, :invalid, and :optional.

  • Enabled and Disabled Pseudo-classes: These are self-explanatory; they alter the style of elements based on whether they're enabled or disabled. Examples include :enabled and :disabled.


5. Describe how to implement a CSS reset and why it is useful.

A CSS reset is a set of styles intended to reduce browser inconsistencies in elements such as margins, paddings, and various typical style defaults.

Benefits of CSS Reset

  • Consistent Starting Point: Eliminates default styling differences across browsers, making the design process more predictable.
  • Consistent Box Model: Ensures uniform calculations of element sizing (e.g., widths and heights) to prevent unexpected layout shifts.
  • Want Only Custom Styles: It's especially useful if you intend to start from a blank slate and apply your own bespoke styles.

The Code

For HTML:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link href="styles.css" rel="stylesheet">
  <title>Document</title>
</head>
<body>
  <h1>Hello, CSS Reset!</h1>
</body>
</html>

And for CSS, here is a simple normalize.css-based reset:

/* reset.css */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

6. How do you select elements by attribute in CSS?

While programming in CSS, you can leverage attribute selectors to define rules based on the presence or value of specific HTML attributes.

Benefits

Using attribute selectors has multiple advantages, such as:

  • Versatility: They cater to a wide range of scenarios.
  • Simplicity: They are easy to use.
  • Consistency: They're a part of a standard set of CSS selectors.

Variations

You can utilize attribute selectors in three distinct ways:

  • Exact Match: [] selects an exact attribute value.
  • Value Starts With: [^] targets attributes with specified starting values.
  • Case Insensitive: Selectors are usually case-sensitive, but by using i, you can make them case-insensitive.

Here is the CSS code snippet:

/* Exact Match */
[class="important"] {
  color: red;
}

/* Value Starts With */
[href^="https"] {
  color: green;
}

/* Case Insensitive */
[alt="home" i] {
  background: url('home-icon.png');
}

In the example above,

  • [class="important"] selects all elements with the exact class attribute set to "important".
  • [href^="https"] will style all anchor links with an href attribute that starts with "https".
  • [alt="home" i] targets the alt attribute with a value of "home" in a case-insensitive manner.

7. What is a pseudo-element, and what are they used for?

Pseudo-elements are virtual elements that give developers the power to style parts of an HTML document that don't correspond to actual HTML elements. Essentially, they let you apply styles to specific parts of an element without the need for extra HTML markup.

Commonly used pseudo-elements include ::before and ::after which let developers insert content before or after an element, respectively.

Key Features

  • Automatic Insertion: These pseudo-elements can add content continuously without requiring manual code changes.
  • Dynamic Content: With generated content and styles, pseudo-elements can adapt based on the specific conditions.
  • Custom Styling: Pseudo-elements enable developers to style parts of an element differently than the rest.

Practical Applications

  1. Indicating External Links

    • Link: Indicating content that opens an external website.
    • Implementation: Visual or textual cues like arrows or "External Link" next to anchor elements.
  2. Specialized Numbers and Letters

    • Link: Styling a single letter or number within a text block.
    • Implementation: Especially useful in design, for instance, highlighting the first letter of a paragraph with a larger font size.
  3. Responsive Backgrounds

    • Link: Apply background images or colors specific to certain parts of an element for various screen sizes.
    • Implementation: Use media queries within the pseudo-element for specific screen sizes.
  4. Code Blocks and Blockquotes

    • Link: Add decorative elements preceding and following code blocks and blockquote elements.
    • Implementation: Help highlight code samples or visually delineate long blockquote sections.
  5. Custom Radio Buttons and Checkboxes

    • Link: Rework default styling for radio buttons and checkboxes for a more customized look.
    • Implementation: Use ::before or ::after with content property to replace default appearance.
  6. Clear Floats

    • Link: Overcome challenges in parent containers not respecting the height of floated child elements and collapsing.
    • Implementation: Create an element with ::after pseudo-element where the content clears the floats.
  7. Hacks for Older Browsers

    • Link: Sometimes, especially with prior versions of Internet Explorer, using pseudo-elements proves crucial for achieving desired stylings.
    • Implementation: Useful for applying specifically crafted styles that wouldn't work properly on older browsers without this technique.

8. Explain the difference between the child combinator and the descendant combinator.

The child combinator (>) and the descendant combinator (~) both serve to target HTML elements with CSS. However, they operate in different ways.

Distinct Characteristics

  • Child Combinator >: Selects an HTML element that is a direct child of another element.
  • Descendant Combinator ~: Matches an HTML element that is a descendant (direct or indirect child) of another specified element.

Code Example

Here is the CSS:

/* target direct children of the parent element */
nav > ul > li {
  color: red;
}

/* target any descendant list items under nav */
nav li {
  color: blue;
}

Here is the HTML:

<nav>
  <ul>
    <li>Direct Child</li> <!-- This is red -->
    <li>
      Nested Child <!-- This is blue -->
      <ul>
        <li>Nested List Item</li> <!-- This is blue -->
      </ul>
    </li>
  </ul>
</nav>

Best Practices for Combinator Use

  1. Specificity of Selection: Implement the child combinator $&gt;$ when you want to target a specific, direct child of an element.
  2. Minimize Global Targeting: Utilize the descendant combinator cautiously as it has the potential for global targeting. It's often a good habit to opt for more specific selectors.
  3. Balance Styling and Performance: As a rule of thumb, more specific selectors could improve rendering speed. Use combinators with a balanced approach keeping in mind both specificity and performance needs.

9. How would you select all direct children elements of a particular type?

To select all direct children of a specific type in CSS, you can use the > child selector combined with the desired element to build the selector.

For example, to select all the direct children that are <li> elements within an <ul> element, you would use the following CSS:

ul > li {
  /* Styles here */
}

10. What are the universal selector and the sibling combinator, and when would you use them?

The Universal Selector (the asterisk, *) is a powerful tool that enables you to target every element within a specified container. While it's a straightforward selector, its implications can be broad.

  • When to Use: You might want to normalize or reset specific CSS properties (resetting padding, margin, etc.) across all elements within a container or the entire document. The Universal Selector effectively achieves this.

  • Best Practices: Overuse of the Universal Selector can lead to performance issues and unexpected style side effects. Keep its use concise and well-defined.

When To Use Sibling Combinator

The Sibling Combinator (+) in CSS targets elements that are immediately preceded by a specified element. Unlike child (>) or descendant (whitespace) selectors, the sibling combinator allows direct sibling targeting.

  • When to Use: For DOM structures where direct sibling relationships are key, such as tabbed content or multi-step forms.

  • Best Practices: While direct sibling targeting is useful, ensure it's the most efficient method for your objective. Overreliance can lead to inflexible CSS and HTML structures.

Code Example: Universal Selector

Here is the CSS:

/* Remove margins, paddings on all elements within the container */
.containers > * {
    margin: 0;
    padding: 0;
}

The HTML:

<div class="container">
    <p>Paragraph 1</p>
    <ul>
        <li>Item 1</li>
        <li>Item 2</li>
    </ul>
</div>

Code Example: Sibling Combinator

Here is the CSS:

/* Style the direct sibling anchor tag when a list item is hovered */
ul li:hover + a {
    color: red;
}

The HTML:

<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li><a href="#">Link</a></li>
</ul>

Case Study: Practical Applications

Let us take a real-world example.

Resetting Margins and Paddings

In this scenario, you have a parent container and you want to remove the default margins and paddings from all its child elements.

The Universal Selector can accomplish this:

Here is the CSS:

.container > * {
    margin: 0;
    padding: 0;
}

The HTML:

<div class="container">
    <p>Paragraph 1</p>
    <p>Paragraph 2</p>
</div>

11. What is the CSS Box Model?

The Box Model is the foundational concept in CSS that describes the structure of an HTML element. It encompasses four key components: content, padding, border, and margin.

Box Model Components

  • Content: The actual element content, such as text, images, or other visual or interactive elements.
  • Padding: Clears an area around the element's content, inside the border. The padding is transparent and doesn't have a background color or border.
  • Border: A solid line that defines the boundary of the padding area.
  • Margin: Clears an area around the element's border, outside any defined background or border.

Visual Representation

CSS Box Model

Key Attributes

  • Height & Width: Element dimensions are determined by the sum of content width/height, and any padding, border, or margin added to it.
  • Border: Specifies the size, style, and color of the border surrounding the content and padding.
  • Margin: Defines the clearance between adjacent elements.

Code Example: Box Model

Here is the HTML code:

<div id="boxModelExample">This is an example of text within the Box Model.</div>

Here is the CSS code:

#boxModelExample {
    border: 5px solid red;
    padding: 20px;
    margin: 20px;
}

Margins

Auto Margins

When the surrounding container has a defined width, horizontal margins set to "auto" equally distribute the remaining horizontal space on both sides of the element, centering it within the container.

#autoMarginExample {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

Parent and Child Element Interplay

Box Sizing

By default, the width of an element does not include padding or border. CSS can alter this behavior using the box-sizing property:

  • Content-Box (default): The element's specified width and height are calculated excluding padding and border. When you change the width or height of an element using CSS, this is the model being used.
  • Border-Box: The width and height comprise the content, padding, and border, avoiding the expansion of the box when adding padding or border to an element.

This distinction aids in layout control and ensures uniformity.

#borderBoxExample {
    box-sizing: border-box;
}

12. Explain margin collapsing.

Margin collapsing can occur when there are adjacent vertical margins between elements. In such cases, the larger of the two margins becomes the "collapsed margin."

Types of Margin Collapsing

  1. Adjacent Sibling Collapsing: When two blocks or inline-block elements are hierarchically adjacent, such as being direct children of a common container, their top and bottom margins might collapse. For instance, in the code:

    <div>
        <p>This is paragraph 1</p>
        <p>This is paragraph 2</p>
    </div>
  2. Parent-Child Collapsing: If there are no intervening content or padding or border between the parent and the first/last child inside it, the parent's margins might collapse with the child's corresponding margin.

Visual Representation of Margin Collapsing

  • Vertical margin collapse: Vertical Margin Collapse
  • Horizontal margin collapse does not occur: Horizontal Margin Collapse

Preventing Margin Collapsing

  1. Padding or Borders: Introduce padding or borders to disrupt the margin collapsing behavior when required.
  2. Inline-Block or Floats: Transform adjacent elements into inline-block or use float property.
  3. Clearfix: Employ a clearing technique for floated elements, which separates subsequent elements in the flow, ultimately preventing margin collapse.

CSS Rules and Margin Collapsing

  1. Marginal vs. Calculated Total:
    • If margins are set, every other margin is respected.
    • If margins are calculated to be a non-zero value, margins can be collapsed.
    • Margins from both the top and the bottom end of the elements are considered.
  2. Non-Root Elements: The root <html> element's margins don't collapse.
  3. Non-Adjacent Items: A margin doesn't collapse through wrapping or inline elements.

While margin collapsing can simplify layout management under specific conditions, it's essential to understand its behavior to ensure predictable and consistent designs.

13. What are the different values for the box-sizing property and what do they do?

The box-sizing property has three possible values:

  1. Content-Box: Box dimensions are calculated by adding the width and height to the content only. This is the default behavior. Mathematically, this is represented as: $$ \text{Content Width/Height} = \text{Specified Width/Height} $$

  2. Border-Box: The width and height of the box are calculated by including both the content and padding within the specified values. Essentially, the browser will adjust the content width and height measurements to include the padding and border thickness. Mathematically, this is represented as: $$ \text{Content Width/Height} = \text{Specified Width/Height} - \text{Padding} - \text{Border} $$

  3. Initial: This value sets the box-sizing property to its default value, which is typically content-box.

Visual Representation

Box-Sizing Properties in CSS

14. How do you center a block element with CSS?

To center a block-level element using CSS, there are several methods, which handle either horizontal or vertical alignment.

Horizontal Centering

There are three common options to horizontally center a block:

  1. Auto margins: by setting both left and right margins to auto.
  2. Flexbox: placing the block in a flex container and setting justify-content: center.
  3. Grid: applying the place-items property on the container set to grid layout.

Code Example: Auto Margins

.container {
  width: 50%;
  margin: 0 auto; /* Center horizontally */
}

Code Example: Flexbox

.container {
  display: flex;
  justify-content: center; /* Horizontally center child elements */
}

Vertical Centering

To vertically center a block, modern techniques such as Flexbox and Grid layout can be used.

Code Example: Flexbox

.container {
  display: flex;
  align-items: center; /* Vertically center child elements */
}

Code Example: CSS Grid

.container {
  display: grid;
  align-items: center; /* Vertically center child elements */
}

15. What is the difference between block, inline, and inline-block elements?

Block elements, by default, stack vertically, while inline elements sit next to each other on the same line.

Inline-block elements combine characteristics of both, stacking vertically and allowing for adjustments in height, margin, and padding.

Code Example: Key Differences

Here is the HTML:

<div class="block">Block</div>
<span class="inline">Inline</span>
<span class="inline-block">Inline-Block</span>

Here is the CSS:

div, span {
  display: block;
  margin-bottom: 10px;
}

.inline-block {
  display: inline-block;
  background: lightblue;
  padding: 10px;
}

In div and span due to default display type (block): text is separated by a gap.

In span.inline-block: with display: inline-block, text shares a line but is visually separated by its background.

Explore all 100 answers here ๐Ÿ‘‰ Devinterview.io - CSS


web-and-mobile-development

css-interview-questions's People

Contributors

devinterview-io avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.