Having trouble achieving single selection for this CSS code:
.btn-primary > i.glyphicon {
color: #ffffff;
}
.btn-primary > span.glyphicon {
color: #ffffff;
}
However, when using the following CSS:
.btn-primary > i.glyphicon, span.glyphicon {
color: #ffffff;
}
The issue arises where all the span.glyphicon tags are being affected by the color. How can I solve this problem?