I'm working in VS2010 & I designed a web site. In that web site I've designed one CSS & that style sheet is only effective in Internet Explorer. The CSS should also take effect in all borwsers (eg. Firefox, Chrome).
The CSS is
div.menuGlobal
{
background-color: #465c71;/*#4b6c9e;/*#4169E1;*/
padding: 10px;
padding-bottom:0px;
}
span.menuGlobal a.current:link,span.menu a.current:visited
{
display:inline-block;
font-weight:bold;
color:#0000CC;
background-color:white;
text-align:center;
padding:4px;
text-decoration:none;
width:70px;
padding:5px;
margin:0px;
}
span.menuGlobal a.current:hover,span.menuGlobal a.current:active
{
color:#32CD32;
background-color:#DFDFDF;
}
span.menuGlobal a:link,span.menu a:visited
{
display:inline-block;
font-weight:bold;
color:#0000CC;
background-color:#DCDCDC;
text-align:center;
padding:4px;
text-decoration:none;
width:70px;
padding:5px;
margin:0px;
}
span.menuGlobal a:hover,span.menuGlobal a:active
{
color:#32CD32;
background-color:#DFDFDF;
}
I've used master page & added another css on that master page. And added this master page in my web page. And above css file is also applied on the same problem. I think this is having some problem.
my master page is having two content place holder. one for header section & another is for body section. And i've added link tag in the header content page holder of the child web page.
how to solve this?