How to create this UI using Bootstrap?
I want to recreate something close to that box UI. As you can see, there is a box "floating above" 2 divs/sections. How can I get something like that using bootstrap? Which utility/component should I look at?
8 Replies
i think it can't be completed only with bootstrap (for that early access card being overlapped)
but yeah, a veteran will help you with that :]
don't think there is any utility/component to achieve that in bootstrap.
as it are solid bg colors, you could just make it it's own section in between with a 2 color gradient.
Can z index solve it?
Clever idea but doesnt sound very practical tbh
š
Do I need raw css with bootstrap to this UI?
yes
Mark's idea can be as simple as
style="background: linear-gradient(to bottom, #color1_hex 50%, #color2_hex 50%);"
on the wrapper element for that "early access" boxIf I wanted to use raw css only without any fancy framework, how should I approach this floating box?
why use raw css only? You can just add styles to your bootstrap site
very vaguely, I'd do something like
with
Okay. I will give that a try