I have a Div with inside several elements, some of theme share some common attributes, in my case input[type="submit"] input[type="text"] share border: 0; margin: 0px;
With this code I’m not able to apply the Style to both Input Tags.
Any idea what I’m doing wrong here? Thanks
#cse-search-box input[type="submit"] input[type="text"] /*Problem here*/
{
border: 0;
margin: 0px;
}
#cse-search-box input[type="text"]
{
position:relative;
top:-6px;
height: 28px;
padding: 0px !important;
}
#cse-search-box input[type="submit"]
{
cursor: pointer;
background-color: Red;
font-weight: bold;
height: 30px;
}
You need a comma: