I'm a front-end web developer that is new to working with Visual Stuido, and am having trouble trying to add my css to the pre-built in login box. I just don't know the proper css code to call on an individual td colspan?
This seems to work:
td {
color: Red;
}
..but it changes every single td on the page
This doesn't seem to work:
td colspan="2" {
color: Red;
}
..I don't know what the proper css code is to call on an individual colspan? Can anyone help?