---
title: "Position Method OR Type | @position"
description: "Set element's position method or type related to parent."
keywords: ["position", "method", "absolute", "relative"]
---
# Position Method OR Type
Set element's position method or type related to parent.
Usage:
- `@position is-*;`
This page contains only the **property configuration reference**. Complete
documentation and usage examples will be added progressively in future updates.
---
## Reference
```js title="shilp.config.js"
const shilpConfig = {
source: "react",
properties: {
position: {
is: {
property: "position: ;",
values: {
static: "static",
fixed: "fixed",
absolute: "absolute",
relative: "relative",
sticky: "sticky",
},
},
},
},
};
export default shilpConfig;
```