I have this HTML:
<html>
    <head>
    </head>
    <body bgcolor="#FFFFFF" style="margin:0px;padding:0px;">
        <div style="width:100%; color:#000000; padding:25px; font-family: Segoe UI;font-size: 17px;">
        </div>
    </body>
</html>
I have set the background-color with bgcolor="#FFFFFF". But how do I make this transparent?
HTML provides no means to specify a transparent background (and the means it has to specify backgrounds of any kind are obsolete and should not be used). You can do this in CSS.
body { 
    background-color: transparent;
}
This will make the background  of the <html> element visible.
There is no way to make the browser window transparent.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With