CSS selector for text input fields?

后端 未结 9 780
广开言路
广开言路 2020-12-07 07:46

How can I target input fields of type \'text\' using CSS selectors?

9条回答
  •  时光说笑
    2020-12-07 08:23

    The attribute selectors are often used for inputs. This is the list of attribute selectors:

    [title] All elements with the title attribute are selected.

    [title=banana] All elements which have the 'banana' value of the title attribute.

    [title~=banana] All elements which contain 'banana' in the value of the title attribute.

    [title|=banana] All elements which value of the title attribute starts with 'banana'.

    [title^=banana] All elements which value of the title attribute begins with 'banana'.

    [title$=banana] All elements which value of the title attribute ends with 'banana'.

    [title*=banana] All elements which value of the title attribute contains the substring 'banana'.

    Reference: https://kolosek.com/css-selectors/

提交回复
热议问题