In the Unreal Four Engine, when using the "Web Browser" plugin, you need to make the web page transparent.

Found the solution, run this js code after loading the page:
document.getElementsByTagName(‘body’)[0].style.overflow = “hidden”;
document.getElementsByTagName(‘body’)[0].style.background= ‘none’;

This js code paste in web site html or in unreal engine? Thanks