files/en-us/web/css/reference/values/basic-shape/xywh/index.md
The xywh() CSS function creates a rectangle using the specified distances from the left (x) and top (y) edges of the containing block and the specified width (w) and height (h) of the rectangle. It is a basic shape function of the {{cssxref("basic-shape")}} data type. You can use the xywh() function in CSS properties such as {{cssxref("offset-path")}} to create the rectangular path along which an element moves and in {{cssxref("clip-path")}} to define the shape of the clipping region.
offset-path: xywh(0 1% 2px 3% round 0 1px 2% 3px);
clip-path: xywh(1px 2% 3px 4em round 0 1% 2px 3em);
<length-percentage>
x and y coordinates of the rectangle.<length-percentage [0,∞]>
round <'border-radius'>
{{CSSSyntax}}
In the example below, the {{cssxref("offset-path")}} property uses the xywh() function to define the shape of the path on which the element, a magenta box in this case, moves. Two different scenarios are shown, each with different values for the xywh() function. The arrow inside the boxes points to the right edge of the box.
<div class="container">
Rectangular path 1
<div class="path xywh-path-1">→</div>
</div>
<div class="container">
Rectangular path 2
<div class="path xywh-path-2">→</div>
</div>
.container {
position: relative;
display: inline-block;
width: 200px;
height: 200px;
border: 1px solid black;
margin: 30px;
text-align: center;
}
.path {
width: 50px;
height: 50px;
position: absolute;
background-color: magenta;
animation: move 10s linear infinite;
}
.xywh-path-1 {
offset-path: xywh(20px 20px 100% 100% round 10%);
}
.xywh-path-2 {
offset-path: xywh(20px 30% 150% 200%);
}
@keyframes move {
0% {
offset-distance: 0%;
}
100% {
offset-distance: 100%;
}
}
{{EmbedLiveSample("Creating offset-path using xywh", "100%", 600)}}
20px from the left and top edges of the containing block. This path rectangle has the same dimension as the containing block, that is, the width is 100% of the width of the containing block, and the height is 100% of the height of the containing block. Notice how the arrow inside the box follows the 10% curve (defined by round 10%) at the rectangular path corners.xywh() is infinity, setting the height to 200% in the path 2 rectangle makes the generated rectangle twice as tall as the containing block. Notice how the arrow inside the box behaves at the corners when no round <'border-radius'> is specified.{{Specifications}}
{{Compat}}