I currently have a CSS style defined as follows:
[class*="col-"] {
border: 1px solid #dddddd;
}
This particular CSS definition gives borders to all of the bootstrap grid columns on my page.
However, I now want to apply borders only to the bootstrap grid columns within a specific div with an id = borderedArea
.
An example can be found here
How should I modify the existing style definition in order to apply borders solely to the div with id =borderedArea