Skip to content

Commit 23a8baf

Browse files
authored
docs: Corrected HTML end-tag typo (#1828)
issue: HTML Element is missing end tag. solution: Corrected typo where the "/" character was missing in the end-tag.
1 parent 54060a9 commit 23a8baf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/docs/top-right-bottom-left.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ Use the `start-*` and `end-*` utilities to set the `inset-inline-start` and `ins
143143
<div class="relative h-32 w-32 ...">
144144
<div class="absolute h-14 w-14 top-0 **start-0** ..."></div>
145145
</div>
146-
<div>
146+
</div>
147147

148148
<div dir="**rtl**">
149149
<div class="relative h-32 w-32 ...">
150150
<div class="absolute h-14 w-14 top-0 **start-0** ..."></div>
151151
</div>
152-
<div>
152+
</div>
153153
```
154154

155155
For more control, you can also use the [LTR and RTL modifiers](/docs/hover-focus-and-other-states#rtl-support) to conditionally apply specific styles depending on the current text direction.

0 commit comments

Comments
 (0)