css.md
· 151 B · Markdown
Неформатований
fixed header
```css
.fixed-header {
position: fixed;
top: 20px;
}
```
sticky header
```css
.sticky-header {
position: sticky;
top: 20px;
}
```
fixed header
.fixed-header {
position: fixed;
top: 20px;
}
sticky header
.sticky-header {
position: sticky;
top: 20px;
}