I am trying to style a specific label element, but I can't see the select element in the code because it is created at runtime.
The label I want to apply my CSS to is nested within:
form > section > div (which has the dataTables_length class) > label with a name attribute.
Here is the current CSS for the label:
form div.dataTables_length label{
border: 0px;
color: #444444;
text-shadow: 0 1px 0 #ffffff;
background: none;
}
And here is the CSS I have tried to use, but it doesn't seem to work:
form div.dataTables_length label input[name^="sonuclar_length"] {
margin-top: -15px;
background-color: black;
}