Sass3.3の@at-rootで親のルールを指定する Published on Feb 16, 2014 先日登壇したCSS Nite LP, Disk 32のセッションで紹介されていたSassのMixinをSass3.3の@at-rootで少し手を加えてみる、という話。 紹介されていたのは、天地左右中央に絶対配置するテクニックのMixin。 @mixin trbl($width: null, $height: null) { position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: $width; height: $height; margin: auto; } .tbrl { @include trbl(100px,50px); } .tbrl { position: absolute; top: 0; bott