Answers for "how to reduce the page height using css"

4

css height property

/* <length> values */
height: 300px;
height: 25em;

/* <percentage> value */
height: 75%;

/* Keyword values */
height: max-content;
height: min-content;
height: fit-content(20em);
height: auto;

/* Global values */
height: inherit;
height: initial;
height: unset;
Posted by: Guest on September-29-2020
0

fixed size body html

html {
    position: relative;
    min-width: 1024px;
    min-height: 768px;
    height: 100%;
}
<!-- Remove height 100% if needed fixed height -->
Posted by: Guest on August-20-2020

Code answers related to "how to reduce the page height using css"

Browse Popular Code Answers by Language