Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to set footer menu in bottom of the web page it support the all browser looks position correctly the condition is it check the all resolution and client height and width.if i extended the content means it also apper the correct position
Posted

1 solution

You probably want to use css media queries. You can use CSS to detect the screen size and style elements depending on that:

CSS
@media screen and (max-width: 600px) {
  .class {
    background: #ccc;
  }
}


In the above example an element with the maximum width of 600px will get the background color set to #ccc.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900