Bootstrap Issue
I'm quite new to web development and I'm following an old tutorial from 2014, the guy is using and old version of bootstrap. I want to make the background color of the text different and I followed the tutorial but it didn't work. The code goes:
<div class="mypanel">
<div class="heading">my header</div>
<div class="body">
<p>my body</p>
</div>
</div>
and in the css:
.mypanel {
margin: 3%;
}
.mypanel .heading{
background-color: #3FE8BB;
}
There is more of course however I didn't think this was relevant.
