Background color not rendering on client

I have an overlay where two weather widgets are not rendering the background color. It works properly on the rest of the widgets. All of the widgets render properly when viewing it on the server but not on the client.

HTML for widget

<body style="background-color=white">
<p>Low: [temperatureMinRound]&ordm;[temperatureUnit]</p>
</body>

CSS for widget
p {
color:black;
font-size:100px;
text-align: center;
background-color:white;
position:absolute;
top:20%;
left:15%;
}
body{
background-color:white;
}

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.