Css Position Absolute Making The Textbox Go Down
I build a prototype using chips material-UI. When I click the Test IPA the textbox should show immediately below the text Test IPA. In the prototype, it shows immediately below
Solution 1:
The parent element of the .MuiPopover-paper-1706
should have position: relative
CSS attribute. If it doesn't then the element with position: absolute
will be positioned relatively to the nearest parent with relative positioning.
Post a Comment for "Css Position Absolute Making The Textbox Go Down"