Weex div absolute positioning

use weex to write a page in which a div needs to be absolutely located and floated on other pages, which can be realized on the computer, but on the Android, it can not show the div,. I don"t know what"s going on? Ask for the big god, ask for the code

Mar.05,2021

The hierarchy of

weex is sorted by structure.
can put the div, you need to float on it at the end. For example,

<template>
    <div class="a"></div>
    <div class="a"></div>
    <div class="a"></div>
    
    
    <div class="b"></div>
</template>
<style>
.b {
   position: absolute;
   ... 
}
</style>

weex does not support zmae index for the time being. The solution is as mentioned above

Menu