Currently making up a browser based game in phaser and trying to add it into the container div tag I\'ve created however phaser seems to be pushing itself to below
div
For Phaser3 you can specify parent id in configuration object
const config = { width: 800, height: 600, ... parent: 'element-id' }; new Phaser.Game(config);
checkout docs here: https://photonstorm.github.io/phaser3-docs/global.html#GameConfig