I try to create a new style for phpmyadmin with the browser extension stylus.
How can I select this select by name:
<select name="criteriaTables[]" multiple="">
I tried it like this:
form#db_search_form select[name=criteriaTables] {
min-height: 400px;
}
…but it does not work.
form#db_search_form select[name=criteriaTables[]] {
min-height: 400px;
}
…does not work either.
2
Answers
Wrap the attribute value in quote marks (
"
):Alternatively, you can also escape the square brackets:
Try below.