CSS: Object Position

The object-position property in CSS is used to specify the alignment or positioning of an image or video content within its container when the object-fit property is set to a value that causes the content to be scaled. It allows you to control where the content is placed relative to the container. Here's a detailed overview of the object-position property:

Basic Syntax

.object-fit-image {
    width: 100%;
    height: 100%;
    object-fit: value; /* How the content fits inside its container */
    object-position: x-position y-position; /* Alignment or position of the content */
}

Values for object-position

Horizontal Position:

  • left: Aligns the content to the left of the container.
  • center: Centers the content horizontally within the container.
  • right: Aligns the content to the right of the container.
  • Length values (e.g., 10px, 50%): Specifies a specific distance from the left edge of the container.

Vertical Position:

  • top: Aligns the content to the top of the container.
  • center: Centers the content vertically within the container.
  • bottom: Aligns the content to the bottom of the container.
  • Length values (e.g., 10px, 50%): Specifies a specific distance from the top edge of the container.

Example Usage

.object-fit-container {
    width: 300px;
    height: 200px;
    border: 1px solid black; /* For visualization */
    overflow: hidden; /* Ensure content does not overflow container */
}

.object-fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fits content while preserving aspect ratio */
    object-position: center bottom; /* Align content to center horizontally and bottom vertically */
}

HTML

<div class="object-fit-container">
    <img src="image.jpg" alt="Image" class="object-fit-image">
</div>

In this example:

  • .object-fit-container defines a container with a specific width and height.
  • .object-fit-image styles an image to fit within its container using object-fit: cover;.
  • object-position: center bottom; positions the content at the center horizontally and at the bottom vertically within the container.

Additional Considerations

  • Responsive Design: object-position is particularly useful for responsive design, allowing you to control the alignment of content based on the available space.
  • Aspect Ratio: It works in conjunction with object-fit to maintain the aspect ratio of the content while positioning it within the container.
  • Browser Support: The object-position property is well-supported in modern browsers, but older versions of Internet Explorer may have limited support. Consider fallback options for older browsers if needed.

By using object-position effectively, you can precisely control the alignment of scaled content within its container, ensuring a visually appealing layout across different screen sizes and devices.