HTML object element overlapping div's

310 Views Asked by At

I am referencing a class in another project inside this div using the <object> element but the object dosen't seem to react to CSS and it overlaps outside of the div it's in when I scroll up and down, has anyone had this issue?

<asp:Panel ID="ObjectPanel" runat="server">
        <div id="ObjectContainer">
            <table cellspacing="1" cellpadding="1" width="100%" bgcolor="#ffffff" border="0"> 
                <tr>   
                    <td>    
                        <asp:Label ID="Label0" runat="server"></asp:Label></td>    
                    <td>    
                        <asp:Label ID="Label1" runat="server"></asp:Label></td> 
                </tr>
            </table>
                    <object id="ObjectId" classid="CLSID:50678BBE-06F5-4867-9D07-96DCEE2A0479" width="110" height="60">
                        <param name="BorderStyle" value="5"/>
                    </object>
        </div> 
</asp:Panel>
0

There are 0 best solutions below