"I am Saqib Jahangir. A passionate vlogger, software engineer, trainer and avid traveler with a deep love for exploring the hidden gems of our beautiful planet. With a strong foundation in Application Development, Application Architecture & Database Design and Product Management, I bring over a decade of hands-on experience building secure, scalable, and resilient web applications for a diverse range of industries."

CSS Positioning and Display

 

Understanding CSS positioning and display properties is essential for controlling the layout and flow of elements on a webpage. These properties allow developers to arrange content exactly how they want, whether it’s a simple static page or a complex interactive design.

CSS Positioning

CSS positioning determines how an element is placed in the document. There are several position values, each with unique behavior:

  • Static (default)
    Elements are positioned according to the normal flow of the page. They appear one after another as the HTML is structured.
  • Relative
    The element is positioned relative to its normal position. You can use
    top, right, bottom, and left to shift it without affecting other elements.
  • Absolute
    The element is removed from the normal flow and positioned relative to its closest positioned ancestor (an ancestor with
    position other than static). It does not affect other elements.
  • Fixed
    The element is positioned relative to the viewport and stays fixed in place even when the page is scrolled.
  • Sticky
    The element toggles between relative and fixed based on the scroll position. It behaves like
    relative until a defined scroll point, then behaves like fixed.

CSS Display

The display property controls how an element is rendered on the page and how it interacts with other elements. Common display values include:

  • block
    The element takes up the full width available, starting on a new line. Examples:
    <div>, <p>
  • inline
    The element only takes up as much width as necessary and flows within text. Examples:
    <span>, <a>
  • inline-block
    Combines features of both block and inline. The element flows inline but respects width and height properties.
  • none
    The element is completely removed from the layout and not displayed.
  • flex
    Turns the container into a flexbox, allowing easy arrangement of child elements in rows or columns with powerful alignment and spacing options.
  • grid
    Enables grid layout, dividing the container into rows and columns for two-dimensional layout control.

 

Popular Posts

Operators (Arithmetic, Comparison, Logical)

Functions (Built-in & User-defined)