---
layout: layouts/post.njk
title: Fixed at corner
description: Fix an element at corner with CSS
keywords: css fixed
---
## HTML
```html
```
## CSS
```css
.fixed-at-corner {
position: relative;
}
.fixed-at-corner__corner {
position: absolute;
}
.fixed-at-corner__corner--tl {
left: 0;
top: 0;
}
.fixed-at-corner__corner--tr {
top: 0;
right: 0;
}
.fixed-at-corner__corner--br {
bottom: 0;
right: 0;
}
.fixed-at-corner__corner--bl {
bottom: 0;
left: 0;
}
```
{% demo %}
{% include "covers/fixed-at-corner.njk" %}
{% enddemo %}