Fixed note bottom right CSS

PHOTO EMBED

Mon Jun 24 2024 17:13:01 GMT+0000 (Coordinated Universal Time)

Saved by @WebDevSylvester

.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  background-color: white;
}
content_copyCOPY

A fixed element is positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. As with relative, the top, right, bottom, and left properties are used.

https://learnlayout.com/position