# Basic Affix has `offset-top`, `top`, `offset-bottom` and `bottom`. `offset-top` is top affixing trigger point. `top` is the style `top` value after top affixing is trigger. `offset-bottom` and `bottom` work in similar way. ```html
Affix Trigger Top 60px Affix Trigger Bottom 60px
``` ```css .container { width: 100%; height: 200px; background-color: rgba(128, 128, 128, .3); border-radius: 6px; overflow: auto; } .padding { height: 150px; width: 100%; background-color: rgba(128, 128, 128, .15); } .content { height: 600px; } ```