react-popover
react-popover copied to clipboard
Position README.md clarification
Maybe it is a given, but I had problems with the positioning until I set the parent element's: position: relative;
.
This is because the popover element places itself using position: absolute
, therefore my popover was positioning itself relative to the first parent with a set position
.
This is just a head's up for anyone with a similar problem, and a suggestion to update the readme to clarify this.