<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.static {
	max-width: 500px;
	max-height: 500px;
	background-color: blue;
	position: static;
}
.absolute {
	max-width: 500px;
	max-height: 500px;
	background-color: yellow;
	position: absolute;
	right: 20px;
}
.fixed { /* vzdy zustava na sve pozici */
	max-width: 500px;
	max-height: 500px;
	background-color: red;
	position: fixed;
	right: 20px;
}
.relative {
	max-width: 500px;
	max-height: 500px;
	background-color: cyan;
	position: relative;
}
.sticky { /* moves with scrolling (top requiered) */
	max-width: 500px;
	max-height: 500px;
	background-color: purple;
	position: sticky;
	top: 20px;
}
.initial {
	max-width: 500px;
	max-height: 500px;
	background-color: orange;
	position: initial;
}
.inherit {
	max-width: 500px;
	max-height: 500px;
	background-color: green;
	position: inherit;
}</pre></body></html>