Skip to content

docs: Corrected HTML end-tag typo #1828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/docs/top-right-bottom-left.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,13 @@ Use the `start-*` and `end-*` utilities to set the `inset-inline-start` and `ins
<div class="relative h-32 w-32 ...">
<div class="absolute h-14 w-14 top-0 **start-0** ..."></div>
</div>
<div>
</div>

<div dir="**rtl**">
<div class="relative h-32 w-32 ...">
<div class="absolute h-14 w-14 top-0 **start-0** ..."></div>
</div>
<div>
</div>
```

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.
Expand Down