Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add items-first-baseline and items-last-baseline utilities - v3 #13887

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

hbendev
Copy link

@hbendev hbendev commented Jun 23, 2024

This PR adds the items-first-baseline and items-last-baseline utility classes that can control baseline-position for the align-items property.

Browser support:

The feature were requested multiple times:

A special plugin in tailwind.config.js can be used as an existing workaround:

plugin(function extendItemsBaselineUtilities({ addUtilities }) {
  // https://developer.mozilla.org/en-US/docs/Web/CSS/align-items#start
  // https://developer.mozilla.org/en-US/docs/Web/CSS/align-items#end
  addUtilities({
    ".items-first-baseline": { "align-items": "first baseline" },
    ".items-last-baseline": { "align-items": "last baseline" },
  });
});

V4 counterpart PR: #13888

@hbendev hbendev force-pushed the items-baseline-position-v3 branch from 3e0e1f7 to cae4260 Compare September 18, 2024 22:22
@thecrypticace thecrypticace requested a review from a team as a code owner December 3, 2024 19:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant