How can i get the ba
selector to work when I use it as an id selector instead of a class selector in the following code?
This will not work with the ba
as the id attribute.
#abc textarea#ba {
height: 400px;
width: 660px;
}
This will work with the ba
as the class attribute.
#abc textarea.ba {
height: 400px;
width: 660px;
}