From 4a102e775c35ef1d0138b147479cbaceec3f627b Mon Sep 17 00:00:00 2001 From: Shimada Takayuki Date: Tue, 13 Aug 2024 07:02:03 +0900 Subject: [PATCH] Fix indentation for terms Fixed indentation of terms in Chapter 4, Relative CSS selectors section to correctly recognize line feeds --- ch04-extending-html-as-hypermedia.typ | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ch04-extending-html-as-hypermedia.typ b/ch04-extending-html-as-hypermedia.typ index cd095e9..b729ef5 100644 --- a/ch04-extending-html-as-hypermedia.typ +++ b/ch04-extending-html-as-hypermedia.typ @@ -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.