[Scss Flex] Reuse Flexbox Styles With A Sass Mixin

This lesson covers flexbox in a reusable mixin that should cover most layout situations on your site. With variables and common defaults, this mixin will cover most alignment issues and replace the need for tables for all time. Need a column with each item evenly spaced but starting their alignment on the top? No problem! How about a row with the items evenly spaced out as well as equal spacing around the edges? We have you covered!

 

复制代码
@mixin flex-container($direction: row, $spacing: space-between, $alignment: null) {
  display: flex;
  flex-direction: $direction;
  justify-content: $spacing;
  align-items: $alignment;
}

.input-wrapper {
  @include flex-container($direction: column, $spacing: space-around);
}

.side-by-side {
  @include flex-container();
}
复制代码

 

About align-items: Link

posted @   Zhentiw  阅读(354)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2015-11-14 [AngularJS] Use ng-model-options to limit $digest
2015-11-14 [Flux] Component / Views
2015-11-14 [Flux] Stores
2014-11-14 [RSpec] LEVEL 2 CONFIGURATION & MATCHERS
2014-11-14 [RSpec] LEVEL 1: INTRODUCTION
2014-11-14 [AngularJS] Angular 1.3 ngAria - 2
2014-11-14 [AngularJS] Angular1.3 ngAria - 1
点击右上角即可分享
微信分享提示