width: ***; height: ***;
Browser |
|
---|
The width property specifies the width of an element, and the height property specifies the height of an element.
div {
width: 80%;
height: 100px;
}
Property | Value | Explanation |
---|---|---|
width | length, %, or auto | the size of the width |
height | length, %, or auto | the size of the height |
The default is "auto".