CSS: Sticky

less than 1 minute read

resource

<html>
<head>
<style>
div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #cae8ca;
  border: 2px solid #4CAF50;
	z-indedx: 1000000000;
}
</style>
</head>
<body>
<div class="sticky">I am sticky!</div>

Updated: