Top / Right / Bottom / Left 
CSS left、right、top、bottom 属性定义了定位元素的外边距边界与其包含块左边界之间的偏移,非定位元素设置此属性无效。
语法 
| Class | 属性 | 说明 | 
|---|---|---|
| inset-l-[0~188] | left: [0~188]px; | 左,其中 [0~188]之间的数值只能是复数,比如0、2、4、6....188 | 
| inset-r-[0~188] | right: [0~188]px; | 右,其中 [0~188]之间的数值只能是复数,比如0、2、4、6....188 | 
| inset-t-[0~188] | top: [0~188]px; | 上,其中 [0~188]之间的数值只能是复数,比如0、2、4、6....188 | 
| inset-b-[0~188] | bottom: [0~188]px; | 下,其中 [0~188]之间的数值只能是复数,比如0、2、4、6....188 | 
| inset | left: 0;right: 0;top: 0;bottom: 0; | |
| inset-x | left: 0;right: 0; | |
| inset-y | top: 0;bottom: 0; |