I need another ID to be styled with one selector in CSS. For example:
#search:focus {
height:50px;
font-size:16px;
}
What if I wanted "#searchline" to have some other styling while #search was in focus? This doesn't work:
#search:focus {
height:50px;
font-size:16px;
#searchline {
margin-top: -10px;
}
}
I'm not sure how to do this.