Position Fixed With 100% Height
I want use 100% height for MAIN id but when I put it 100% height to main id, creativity class is placed on the main. when use pixel for main in different device its look different.
Solution 1:
If you don't mind IE 8 and below, you can use vh
(viewport-height) units:
#main {
width: 100%;
height: 100vh;
}
Post a Comment for "Position Fixed With 100% Height"