- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Selectors
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Border Block
- CSS - Border Inline
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursor
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS - Inline Block
- CSS - Dropdowns
- CSS - Visibility
- CSS - Overflow
- CSS - Clearfix
- CSS - Float
- CSS - Arrows
- CSS - Resize
- CSS - Quotes
- CSS - Order
- CSS - Position
- CSS - Hyphens
- CSS - Hover
- CSS - Display
- CSS - Focus
- CSS - Zoom
- CSS - Translate
- CSS - Height
- CSS - Hyphenate Character
- CSS - Width
- CSS - Opacity
- CSS - Z-Index
- CSS - Bottom
- CSS - Navbar
- CSS - Overlay
- CSS - Forms
- CSS - Align
- CSS - Icons
- CSS - Image Gallery
- CSS - Comments
- CSS - Loaders
- CSS - Attr Selectors
- CSS - Combinators
- CSS - Root
- CSS - Box Model
- CSS - Counters
- CSS - Clip
- CSS - Writing Mode
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - Pointer Events
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS Advanced
- CSS - Grid
- CSS - Grid Layout
- CSS - Flexbox
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Paged Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS - Image Sprites
- CSS - Important
- CSS - Data Types
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS - Rounded Corner
- CSS - Border Images
- CSS - Multi Background
- CSS - Color
- CSS - Gradients
- CSS - Box Shadow
- CSS - Box Decoration Break
- CSS - Caret Color
- CSS - Text Shadow
- CSS - Text
- CSS - 2d transform
- CSS - 3d transform
- CSS - Transition
- CSS - Animation
- CSS - Multi columns
- CSS - Box Sizing
- CSS - Tooltips
- CSS - Buttons
- CSS - Pagination
- CSS - Variables
- CSS - Media Queries
- CSS - Functions
- CSS - Math Functions
- CSS - Masking
- CSS - Shapes
- CSS - Style Images
- CSS - Specificity
- CSS - Custom Properties
- CSS Responsive
- CSS RWD - Introduction
- CSS RWD - Viewport
- CSS RWD - Grid View
- CSS RWD - Media Queries
- CSS RWD - Images
- CSS RWD - Videos
- CSS RWD - Frameworks
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS - bottom Property
The bottom property in CSS is used to set the bottom position of a positioned element. It specifies the distance between the bottom edge of the element and the bottom edge of its containing element.
Based on the value of the position property, the effect of bottom property, is determined.
Position value | Bottom property |
---|---|
absolute or fixed | Specifies the distance between element's bottom edge's outer margin amd the inner border of the container's bottom edge. |
relative | Specifies the distance the element's bottom edge is moved above its normal position. |
sticky | Used to compute the sticky-constraint rectangle. |
static | No effect on the elements. |
Both top and bottom distances are respected, when both top and bottom values are specified, position is set to absolute or fixed , and height is either 100% or auto.
The top value takes precedence and the bottom value is ignored, when height is constrained or position is set to relative.
Possible Values
<length> − Can specify a negative, null or positive value.
<percentage> − Percentage of the container's height.
auto − Default value. Browser calculates the bottom position.
Applies to
All the HTML positioned element.
DOM Syntax
object.style.bottom = "2px";
CSS bottom - With Absolute Position
Here is an example with position:absolute and bottom having different values (auto, percent, length) −
<html> <head> <style> div.blockbottompostion { bottom: 10%; background-color: yellow; position: absolute; height: 100px; border: 3px solid rgb(12, 5, 62); } </style> </head> <body> <h1>The bottom Property</h1> <p>This<br />is<br />tutorialspoint<br />site,<br />and,<br />has,<br />many,<br />many<br />courses. </p> <p>This<br />site<br />has<br />abundant,<br />material,<br />on,<br />all,<br />skills. </p> <div class="blockbottompostion">Position:absolute bottom:10%</div> </body> </html>
CSS bottom - With Relative Position
Here is an example with position:relative and bottom having different values (auto, percent, length)−
<html> <head> <style> div.blockbottompostion { bottom: 10%; background-color: yellow; position: relative; height: 100px; border: 3px solid rgb(12, 5, 62); } </style> </head> <body> <h1>The bottom Property</h1> <p>This<br />is<br />tutorialspoint<br />site,<br />and,<br />has,<br />many,<br />many<br />courses. </p> <p>This<br />site<br />has<br />abundant,<br />material,<br />on,<br />all,<br />skills. </p> <div class="blockbottompostion">Position:relative bottom:10%</div> </body> </html>
CSS bottom - With Fixed Position
Here is an example with position:fixed and bottom having different values (auto, percent, length)−
<html> <head> <style> div.blockbottompostion { bottom: 10%; background-color: yellow; position: fixed; height: 100px; border: 3px solid rgb(12, 5, 62); } </style> </head> <body> <h1>The bottom Property</h1> <p>This<br />is<br />tutorialspoint<br />site,<br />and,<br />has,<br />many,<br />many<br />courses. </p> <p>This<br />site<br />has<br />abundant,<br />material,<br />on,<br />all,<br />skills. </p> <div class="blockbottompostion">Position:fixed bottom:10%</div> </body> </html>
CSS bottom - With Sticky Position
Here is an example with position:sticky and bottom having different values (auto, percent, length)−
<html> <head> <style> div.blockbottompostion { bottom: 10%; background-color: yellow; position: sticky; height: 100px; border: 3px solid rgb(12, 5, 62); } </style> </head> <body> <h1>The bottom Property</h1> <p>This<br />is<br />tutorialspoint<br />site,<br />and,<br />has,<br />many,<br />many<br />courses. </p> <p>This<br />site<br />has<br />abundant,<br />material,<br />on,<br />all,<br />skills. </p> <div class="blockbottompostion">Position:sticky bottom:10%</div> </body> </html>
CSS bottom - With Static Position
Here is an example with position:static and bottom having different values (auto, percent, length)−
<html> <head> <style> div.blockbottompostion { bottom: 10%; background-color: yellow; position: static; height: 100px; border: 3px solid rgb(12, 5, 62); } </style> </head> <body> <h1>The bottom Property</h1> <p>This<br />is<br />tutorialspoint<br />site,<br />and,<br />has,<br />many,<br />many<br />courses. </p> <p>This<br />site<br />has<br />abundant,<br />material,<br />on,<br />all,<br />skills. </p> <div class="blockbottompostion">Position:static bottom:10%</div> </body> </html>