reactjs / react-modal

Accessible modal dialog component for React
http://reactcommunity.org/react-modal
MIT License
7.37k stars 809 forks source link

how to show icon beyond the content #339

Closed CXJoyce closed 7 years ago

CXJoyce commented 7 years ago

Summary:

I want to set a close icon beyond my content section, but I find this icon cannot show.

2 pic

claydiffrient commented 7 years ago

@CXJoyce You should be able to accomplish this if you set a z-index on the icon higher than what the modal overlay sets.

tomasztomys commented 7 years ago

@claydiffrient not working

tomasztomys commented 7 years ago

Ok, I have an answer. You have to pass overflow attribute to the nested div (not to the div which has ReactModal__Content class).

CXJoyce commented 7 years ago

@tomasztomys ,thanks ! It does work!