CSS bottom property decides the bottom offset (bottom edge of element offset from bottom edge of container) for positioned elements. An element is considered positioned if its position property has value other than static.
CSS property bottom
CSS version: | CSS 2.1 |
Value: | length | percentage | auto | inherit |
Initial: | auto |
Applies to: | positioned elements |
Inherited: | no |
Percentage: | percentage of height of containing block |
- Property bottom can be applied to positioned elements (fixed, relative, absolute)
- For absolute element the offset is relative to nearest positioned container.
- For relative element the offset is relative to the element’s normal position itself.
- In case value is specified as percentage, it is percentage of containing block width.
- Negative values are ok.
Example – css bottom property
In the following code, CSS property bottom can be changed to the following values
- 0
- 50px
- 10%
- -10px
<style type="text/css"> .container { position: relative; background-color: gray; width:200px; height: 100px; } .boxwithoffset { position: absolute; background-color:lightblue; width: 80px; left:0 ; bottom: 0; } </style> <div class="container"> <div>regular text</div> <div class="boxwithoffset">box with bottom offset</div> </div>
bottom refresh