I've been attempting to enhance a website page with a nice background color. Although it should be simple using the background-color property in my CSS file, for some reason, it's not showing up. After some trial and error with my HTML code, I discovered that removing a link to a bootstrap 4 CSS file in my header allows the background color to display perfectly. However, I do need to keep bootstrap 4, so I tried various other solutions:
body {
height:100%;
padding:0%;
margin-top: 50px;
background-image: none;
background-color:#B59DA4;}
Unfortunately, setting background-image to none, adjusting height to 100%, or changing padding to 0% did not have the desired effect like removing the bootstrap 4 link did:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
If anyone has any advice on how to resolve this issue without deleting the bootstrap 4 link, I would greatly appreciate it.