I'm trying to write a style but am having trouble identifying a class of element identified by an ID such as airbus.errors (first example) or boeing.errors (second example below).
<div class="message">
  <span id="airbus.errors">
</div>
I've tried this but it doesn't work:
.message .errors
{
  background: red;
}
I need to write it generically so that it would also work with this case:
<div class="message">
  <span id="boeing.errors">
</div>
 
     
     
     
     
     
     
     
    