From 27be18e66b77ecf000900c8c4ae3cff586774060 Mon Sep 17 00:00:00 2001 From: Emanuel Kluge Date: Wed, 18 Sep 2019 15:01:33 +0200 Subject: [PATCH] Add "Begins with" attribute selector to CSS sheet --- css.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/css.md b/css.md index dfb7ef468..162d28c5a 100644 --- a/css.md +++ b/css.md @@ -43,13 +43,14 @@ keywords: ### Attribute selectors -| Selector | Description | -| ----------------- | ----------------------------------- | -| `[role="dialog"]` | `=` Exact | -| `[class~="box"]` | `~=` Has word | -| `[class|="box"]` | `|=` Exact or prefix (eg, `value-`) | -| `[href$=".doc"]` | `$=` Ends in | -| `[class*="-is-"]` | `*=` Contains | +| Selector | Description | +| ------------------ | ----------------------------------- | +| `[role="dialog"]` | `=` Exact | +| `[class~="box"]` | `~=` Has word | +| `[class|="box"]` | `|=` Exact or prefix (eg, `value-`) | +| `[href$=".doc"]` | `$=` Ends in | +| `[href^="/index"]` | `^=` Begins with | +| `[class*="-is-"]` | `*=` Contains | ### Pseudo-classes