Skip to main content
Login Join
Snippet · SCSS / Sass

Flex Center Utility

Shared by Darshit Rajyaguru · May 14, 2026

18 views
1 upvote
Back to Snippets

Creates reusable flex centering utility.

@mixin flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.box {
	@include flex-center;
}
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments