I am having trouble understanding how CSS rules are applied.
For a paragraph in a div, I want to apply this newly defined rule:
.imgDescription {
position: absolute;
right: 10px;
color: #000;
}
but the paragraph is still styled by the preceding rule:
.dark-wrapper .inner p {
font-family: 'Open Sans';
font-size:14px;
color:#CCC;
}
I don't know how to fix this.