From 00584d1621e2312c89b915b5cc380efe61d4a9fb Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Sat, 5 Oct 2019 20:15:55 +0200 Subject: [PATCH] Remove exception for only-of-type selector --- components/css_selector.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/css_selector.rst b/components/css_selector.rst index 2c15ef432dd..c72178a5e61 100644 --- a/components/css_selector.rst +++ b/components/css_selector.rst @@ -93,9 +93,8 @@ rather than elements. Several pseudo-classes are not yet supported: -* ``*:first-of-type``, ``*:last-of-type``, ``*:nth-of-type``, - ``*:nth-last-of-type``, ``*:only-of-type``. (These work with an element - name (e.g. ``li:first-of-type``) but not with ``*``). +* ``*:first-of-type``, ``*:last-of-type``, ``*:nth-of-type`` and + ``*:nth-last-of-type``. Learn more ----------