Author: Saim Khalid

  • mix blend mode Property

    CSS mix-blend-mode property determines how the content of an element should blend with the content of its parent and the element’s background. Syntax mix-blend-mode: normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | difference | exclusion | hue | saturation | color | luminosity; Property Values Value Description normal No…

  • min block size Property

    CSS min-block-size property sets the minimum block size of an element. The direction of the block is determined by the writing-mode property. The property has no effect, if the content fits well within the block. Syntax min-block-size: auto | length | percentage | initial | inherit; Property Values Value Description auto No height limit is set with this value.…

  • max block size Property

    CSS max-block-size property sets the maximum block size of an element. The direction of the block is determined by the writing-mode property. The property has no effect, if the content fits well within the block. Syntax max-block-size: auto | length | percentage | initial | inherit; Property Values Value Description auto No height limit is set with this value.…

  • place self Property

    CSS place-self is a shorthand property that aligns the individual items in both block and inline directions simultaneously, similar to properties like align-self and justify-self in layout systems like Grid or Flexbox. The first value is used if the second value is not set. This property is a shorthand for the following CSS properties: Possible Values Applies To Block-level…

  • place items Property

    CSS place-items is a shorthand property used in CSS Grid Layout to set both the align-items and justify-items properties in a single declaration. It allows you to align and justify grid items within the grid container along both the block (column) and inline (row) axes simultaneously This property is a shorthand for the following CSS properties: Possible Values Applies To All…

  • place content

    CSS place-content is a shorthand property that aligns content in both the block (column) and inline (row) axes simultaneously. It is used to set both the align-content and justify-content properties in a single declaration. This property is a shorthand for the following CSS properties: Possible Values Applies To Multi-line flex containers. Syntax Positional Alignment place-content: center start; place-content: start center; place-content:…

  • pointer event Property

    CSS pointer-event property is used to control how an element responds to pointer events such as mouse clicks, mouseovers, and mouse movements. It allows you to specify whether an element should receive pointer events and whether those events should trigger actions like clicking or hovering. Possible Values Applies To All elements. Syntax pointer-event: auto | none |…

  • tab size Property

    CSS tab-size property is used to specify the width of tab characters ((U+0009)) within an element. It allows you to control the visual spacing of tab characters, which can be useful when displaying code or other content where tab characters are significant. Possible Values Applies to Block containers. Syntax <integer> Values tab-size: 4; tab-size: 0; <length> Values…

  • justify self Property

    CSS justify-self property provides a default alignment along the relevant axis for each box by setting the default justify-self for all box items. Syntax justify-self: auto | normal | stretch | start | right | center | left | end | overflow-alignment | baseline alignment | initial | inherit; Property Values Value Description auto It inherits the…

  • justify items Property

    CSS justify-items property is used to align grid-items within their grid area along the inline direction (horizontal). It controls how items are placed within their grid cells, effectively setting their alignment within the container’s grid. Syntax justify-items: legacy | normal | stretch | start | left | center | end | right | overflow-alignment | baseline alignment…