2017-01-02 20:46:06 +01:00
---
layout: docs
title: Position
2017-05-28 20:25:59 +02:00
description: Use these shorthand utilities for quickly configuring the position of an element.
2017-01-02 20:46:06 +01:00
group: utilities
2017-05-28 20:25:59 +02:00
toc: true
2017-01-02 20:46:06 +01:00
---
2020-09-21 04:42:41 +02:00
## Position values
2017-08-08 07:36:57 +02:00
Quick positioning classes are available, though they are not responsive.
2020-10-19 11:56:49 +02:00
```html
2017-08-08 07:36:57 +02:00
< div class = "position-static" > ...< / div >
< div class = "position-relative" > ...< / div >
< div class = "position-absolute" > ...< / div >
< div class = "position-fixed" > ...< / div >
< div class = "position-sticky" > ...< / div >
2020-10-19 11:56:49 +02:00
```
2020-09-21 04:42:41 +02:00
## Arrange elements
Arrange elements easily with the edge positioning utilities. The format is `{property}-{position}` .
Where *property* is one of:
- `top` - for the vertical `top` position
2020-06-09 15:44:20 +02:00
- `start` - for the horizontal `left` position (in LTR)
2020-09-21 04:42:41 +02:00
- `bottom` - for the vertical `bottom` position
2020-06-09 15:44:20 +02:00
- `end` - for the horizontal `right` position (in LTR)
2020-09-21 04:42:41 +02:00
Where *position* is one of:
- `0` - for `0` edge position
- `50` - for `50%` edge position
- `100` - for `100%` edge position
(You can add more position values by adding entries to the `$position-values` Sass map variable.)
{{< example class = "bd-example-position-utils" > }}
< div class = "position-relative" >
2020-06-09 15:44:20 +02:00
< div class = "position-absolute top-0 start-0" > < / div >
< div class = "position-absolute top-0 end-0" > < / div >
< div class = "position-absolute top-50 start-50" > < / div >
< div class = "position-absolute bottom-50 end-50" > < / div >
< div class = "position-absolute bottom-0 start-0" > < / div >
< div class = "position-absolute bottom-0 end-0" > < / div >
2020-09-21 04:42:41 +02:00
< / div >
{{< / example > }}
## Center elements
In addition, you can also center the elements with the transform utility class `.translate-middle` .
This class applies the transformations `translateX(-50%)` and `translateY(-50%)` to the element which, in combination with the edge positioning utilities, allows you to absolute center an element.
{{< example class = "bd-example-position-utils" > }}
< div class = "position-relative" >
2020-06-09 15:44:20 +02:00
< div class = "position-absolute top-0 start-0 translate-middle" > < / div >
< div class = "position-absolute top-0 start-50 translate-middle" > < / div >
< div class = "position-absolute top-0 start-100 translate-middle" > < / div >
< div class = "position-absolute top-50 start-0 translate-middle" > < / div >
< div class = "position-absolute top-50 start-50 translate-middle" > < / div >
< div class = "position-absolute top-50 start-100 translate-middle" > < / div >
< div class = "position-absolute top-100 start-0 translate-middle" > < / div >
< div class = "position-absolute top-100 start-50 translate-middle" > < / div >
< div class = "position-absolute top-100 start-100 translate-middle" > < / div >
2020-09-21 04:42:41 +02:00
< / div >
{{< / example > }}
2020-11-29 15:58:20 +01:00
By adding `.translate-middle-x` or `.translate-middle-y` classes, elements can be positioned only in horizontal or vertical direction.
{{< example class = "bd-example-position-utils" > }}
< div class = "position-relative" >
< div class = "position-absolute top-0 start-0" > < / div >
< div class = "position-absolute top-0 start-50 translate-middle-x" > < / div >
< div class = "position-absolute top-0 end-0" > < / div >
< div class = "position-absolute top-50 start-0 translate-middle-y" > < / div >
< div class = "position-absolute top-50 start-50 translate-middle" > < / div >
< div class = "position-absolute top-50 end-0 translate-middle-y" > < / div >
< div class = "position-absolute bottom-0 start-0" > < / div >
< div class = "position-absolute bottom-0 start-50 translate-middle-x" > < / div >
< div class = "position-absolute bottom-0 end-0" > < / div >
< / div >
{{< / example > }}
2020-09-21 04:42:41 +02:00
## Examples
Here are some real life examples of these classes:
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
{{< example class = "bd-example-position-examples d-flex justify-content-around align-items-center" > }}
2020-09-21 04:42:41 +02:00
< button type = "button" class = "btn btn-primary position-relative" >
2020-06-09 15:44:20 +02:00
Mails < span class = "position-absolute top-0 start-100 translate-middle badge rounded-pill bg-secondary" > +99 < span class = "visually-hidden" > unread messages< / span > < / span >
2020-09-21 04:42:41 +02:00
< / button >
Add dark mode support (#35857)
* Add dark mode to docs
* Minor fix: missing space indentation
* Minor fix: revert utilities/z-index added-in modification
* Remove prev: and next: from doc because extracted to another PR
* Use .bg-body-tertiary in all Utilities > Overflow examples
* fix example
* Fix up spacing examples
* Update box-shadow Sass variables and utilities to auto-adjust to color modes
* Remove unused docs class
* Refactor form styles to use CSS variable for background images on .form-check and .form-switch
* Fix docs selector
* Rename shortcut for clarity
* Heading consistency
* Reintroduce missing 4th grid item in Utilities > Spacing example
* Fix bundlewatch
* .bd-callout* rendering is OK so removing comments in the code
* Update scss/_utilities.scss
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Fix gutters example styling
* Fix text colors on background utils docs
* redesign and fix up position marker example, which doesn't show nicely in darkmode but at least isn't broken
* fix some color utils examples
* Deprecate mixin notice
* Deprecate notice for list-group-item-variant() mixin
* Revamp new link CSS vars
* Use map-keys in some each Sass files
* Remove list-group-item-variant mixin ref in sass loop desc
* Display CSS vars scoped to our built-in dark mode
* Revert previous commit
* Fix list group variant link
* Fix typo
* Remove imports of alert/list-group mixins in scss/_mixins.scss
* Small formatting + comments removal in scss/_content.scss
* Fix alert links colors
* fix dropdown border-radius mixin
* fix link color and underline again, this time using CSS var override for color var and fallback value for the underline
* fix colors on docs navbar for dark mode
* remove two changes
* missing ref
* another link underline fix, just use sass vars for link decoration for now
* missing color bg docs, plus move dropdown override to scss
* more changes from review
* fix some examples, drop unused docs navbar styles, update docs navbar color mode to use mixin
* Few fixes around type
- Restored CSS variable for color on headings, this time with a fallback value
- In conjunction, restored and wrapped the default CSS var with a null value check
- Split headings and paragraphs docs in Reboot, elaborated on them
* Restyle custom details > summary element in docs
* Rewrite some migration docs
* fix form checks
* Fix up some navbar styling, tweak docs callout
* Fix select images, mostly for validation styling
* Clean up some migration notes, document some new form control CSS vars, mention new variables-dark in sass docs
* Update site/content/docs/5.2/components/scrollspy.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Apply suggestions from code review
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* mention form control css vars in migration guide
* Tweak grid and flex docs background examples
* clarify some docs
* fix some more things
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
2022-11-29 07:30:26 +01:00
< div class = "position-relative py-2 px-4 text-bg-dark border border-dark rounded-pill" >
Marker < svg width = "1em" height = "1em" viewBox = "0 0 16 16" class = "position-absolute top-100 start-50 translate-middle mt-1" fill = "var(--bs-dark)" xmlns = "http://www.w3.org/2000/svg" > < path d = "M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z" / > < / svg >
< / div >
2020-09-21 04:42:41 +02:00
< button type = "button" class = "btn btn-primary position-relative" >
2020-06-09 15:44:20 +02:00
Alerts < span class = "position-absolute top-0 start-100 translate-middle badge border border-light rounded-circle bg-danger p-2" > < span class = "visually-hidden" > unread messages< / span > < / span >
2020-09-21 04:42:41 +02:00
< / button >
{{< / example > }}
You can use these classes with existing components to create new ones. Remember that you can extend its functionality by adding entries to the `$position-values` variable.
{{< example class = "bd-example-position-examples" > }}
< div class = "position-relative m-4" >
Rework progress bar markup and styles (#36831)
* Rework progress bar markup and styles
Logically moves the various `role` and `aria-` attributes to the `.progress` element itself, leaving the `.progress-bar` to be used purely for the visual presentation. This fixes the problem #36736 that in certain browser/AT combinations, zero-value/zero-width progress bars are completely ignored and not announced.
For multiple/stacked progress bars, this PR introduces a new wrapper and class `.progress-stacked`, to accommodate for the fact that with the more logical structure above, we need full `.progress` elements with child `.progress-bar` elements, and can't get away with the fudge we had before of having a single `.progress` with multiple `.progress-bar`s.
Note that the old markup structures still work with this change, so this could be considered a non-breaking change - though one we definitely want to highlight as it's more accessible (as it now guarantees that zero-value/zero-width progress bars, whether on their own or as part of a multi/stacked bar, are actually announced)
* Add a note about progress bar change in migration guide
* Add notes with old markup examples and explanation
* Fix bundlewatch
* Update site/content/docs/5.2/components/progress.md
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
* Reintroduce deleted styles
Turns out they're needed for correct positioning of text inside progress bar
* Move changes in markup to Migrationg guide, link to that from top of progress page, rewrite some content
* Fix typo in callout
* Clarify "Sizing" section
* Remove redundant "now"
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
Co-authored-by: Julien Déramond <juderamond@gmail.com>
Co-authored-by: Mark Otto <markdotto@gmail.com>
Co-authored-by: Mark Otto <markd.otto@gmail.com>
2022-11-29 08:07:48 +01:00
< div class = "progress" role = "progressbar" aria-label = "Progress" aria-valuenow = "50" aria-valuemin = "0" aria-valuemax = "100" style = "height: 1px;" >
< div class = "progress-bar" style = "width: 50%" > < / div >
2020-09-21 04:42:41 +02:00
< / div >
2020-06-09 15:44:20 +02:00
< button type = "button" class = "position-absolute top-0 start-0 translate-middle btn btn-sm btn-primary rounded-pill" style = "width: 2rem; height:2rem;" > 1< / button >
< button type = "button" class = "position-absolute top-0 start-50 translate-middle btn btn-sm btn-primary rounded-pill" style = "width: 2rem; height:2rem;" > 2< / button >
< button type = "button" class = "position-absolute top-0 start-100 translate-middle btn btn-sm btn-secondary rounded-pill" style = "width: 2rem; height:2rem;" > 3< / button >
2020-09-21 04:42:41 +02:00
< / div >
{{< / example > }}
2021-02-11 04:29:59 +01:00
## Sass
### Maps
Default position utility values are declared in a Sass map, then used to generate our utilities.
{{< scss-docs name = "position-map" file = "scss/_variables.scss" > }}
### Utilities API
Position utilities are declared in our utilities API in `scss/_utilities.scss` . [Learn how to use the utilities API. ]({{< docsref "/utilities/api#using-the-api" >}} )
{{< scss-docs name = "utils-position" file = "scss/_utilities.scss" > }}