css:div_100_height_with_padding_margin
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
css:div_100_height_with_padding_margin [2020/05/20 08:52] – peter | css:div_100_height_with_padding_margin [2021/08/08 12:53] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== CSS - DIV 100% height with padding/ | ||
- | If my parent element is 200px tall and I specify height = 100% with padding = 5px I would expect that I should get a 190px high element with border = 5px on all sides, nicely centered in the parent element. | ||
- | |||
- | The obvious answer doesn' | ||
- | |||
- | <code css> | ||
- | #myDiv { | ||
- | width: 100% | ||
- | height: 100%; | ||
- | padding: 5px; | ||
- | } | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Answer ===== | ||
- | |||
- | **display: | ||
- | |||
- | The container has to be the right type; position attribute is fixed, relative, or absolute. | ||
- | |||
- | <code css> | ||
- | .stretchedToMargin { | ||
- | display: block; | ||
- | position: | ||
- | height: | ||
- | bottom:0; | ||
- | top:0; | ||
- | left:0; | ||
- | right:0; | ||
- | margin-top: | ||
- | margin-bottom: | ||
- | margin-right: | ||
- | margin-left: | ||
- | background-color: | ||
- | } | ||
- | </ | ||
- | |||
- | <code html> | ||
- | <div class=" | ||
- | Hello, world | ||
- | </ | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Can also do percentage: | ||
- | |||
- | <code css> | ||
- | *.stretchedMargin { | ||
- | display: block; | ||
- | position: | ||
- | height: | ||
- | bottom:0; | ||
- | top:0; | ||
- | left:0; | ||
- | right:0; | ||
- | margin-top: | ||
- | margin-right: | ||
- | margin-left: | ||
- | background-color: | ||
- | } | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | See the following to fix this: | ||
- | |||
- | https:// | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using CSS box-sizing ===== | ||
- | |||
- | There is a new property in CSS3 that you can use to change the way the box model calculates width/ | ||
- | |||
- | By setting this property with the value " | ||
- | |||
- | If you define something with 100px width, and 10px padding, it will still be 100px wide. | ||
- | |||
- | <code css> | ||
- | box-sizing: border-box; | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using basic CSS ===== | ||
- | |||
- | The solution is to NOT use height and width at all! Attach the inner box using top, left, right, bottom and then add margin. | ||
- | |||
- | <code css> | ||
- | .box {margin: | ||
- | </ | ||
- | |||
- | <code html> | ||
- | <div class=" | ||
- | <div class=" | ||
- | <div class=" | ||
- | This will show three nested boxes. Try resizing browser to see they remain nested properly. | ||
- | </ | ||
- | </ | ||
- | </ | ||
- | </ |
css/div_100_height_with_padding_margin.1589964733.txt.gz · Last modified: 2020/07/15 09:30 (external edit)