-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility for Z-Indexing (layers)? #131
Comments
You can do position: 'absolute' in style and use top, left, bottom, right. For zindex, you can move things around in the render, the latest one is drawn on-top of the one before. If you want to do a modal, put it at the root of your app |
Thanks Chris. I don't know how I missed the absolute positioning in the layout example. :( I hate bugging you guys w/ these trivial things. I'll try to do a better job @ searching the code base before posting here. |
well i agree with you @vjeux but the fact that we need some time to put a view in the front or in the back what ever the position in the DOM. and position absolute is not the solution for that |
Well i know it's closed but it's very useful to have these properties bringSubviewToFront and inverse See The PR #1891 |
Web developers have been accustomed to dealing with plain HTML to represent UI, which gives us the ability to generate layers via Absolute Positioning and z-indexing.
Do you guys plan on implementing Z-indexing or absolute positioning?
The text was updated successfully, but these errors were encountered: