After streamlining my project to focus on the main issue, I am still facing a problem. Here is the relevant code snippet:
.App{
background-color: aqua;
}
.AboutMe{
color:blue;
background-color: yellow;
}
This is from App.js:
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<div className="AboutMe">
Akshay Gulabrao<br/>
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="2c4d475f4b594040646164374b4c">[email protected]</a><br/>
+1 (818) 518-8295<br/>
</div>
</div>
);
}
export default App;
Despite expecting a light blue background, I encountered an issue where no background was displayed.