I encountered an issue in the index.html file where my code was not displaying the background color as intended. Here is a snippet of the code that worked:
<!DOCTYPE html>
<html>
<head>
<body style="background-color: #A8E4A0;">
<meta charset="utf-8" />
<title>Demo</title>
While discussing this with my partner, they suggested keeping the background-color setting in our user-interface.css file. However, when I tried to implement this change, it did not work as expected. Instead of showing the specified background-color, the page remained white.
* Universal Settings */
.body{
background-color : AE8E4A0;
font-family: Arial;
}
/* Search bar */
.heading {
font-size: 30px;
padding: 16px 0;
color: #444;
text-align: center;
}/*Container*/`enter code here`
If anyone has any insights on what could be causing this issue, your help would be greatly appreciated.
Thank you, Scott