Skip to content
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

Fix indentation for terms #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions ch04-extending-html-as-hypermedia.typ
Original file line number Diff line number Diff line change
Expand Up @@ -884,16 +884,16 @@ CSS selector _relative_ to the element it is declared on. Here are some
examples:

/ `closest`: #index[relative CSS selectors][closest] Find the closest parent
element matching the given selector, e.g., `closest form`.
element matching the given selector, e.g., `closest form`.

/ `next`: #index[relative CSS selectors][next] Find the next element (scanning
forward) matching the given selector, e.g., `next input`.
forward) matching the given selector, e.g., `next input`.

/ `previous`: #index[relative CSS selectors][previous] Find the previous element
(scanning backwards) matching the given selector, e.g., `previous input`.
(scanning backwards) matching the given selector, e.g., `previous input`.

/ `find`: #index[relative CSS selectors][find] Find the next element within this
element matching the given selector, e.g., `find input`.
element matching the given selector, e.g., `find input`.

/ `this`: #index[relative CSS selectors][this] The current element.

Expand Down