In my html page, i am using the media query
based css
but it's not working.
html :
<!DOCTYPE>
<html>
<!--[if IE 9]>
<html lang="en-us" class="ie9">
<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../css/reset.css">
<link rel="stylesheet" href="../css/login.css">
<link rel='stylesheet' media='screen(min-device-width : 320px) and (max-device-width : 480px)' href='../css/max480.css' /> //properly linked.
<title>Welcome to ClearBid Login</title>
</head>
<body class="loginPage">
css :
.loginContent > section {
background: none; //it always visible.
}
What else i need to do?