Skip to content

Tag Archives: CSS-Selectors

The :out-of-range selector is used to select the elements that are lying outside the given range. This selector only works for input element with max… Read More
This :invalid selector is used to select every form elements which does not validate according to the elements. This selector works only for some form… Read More
The :first-child selector is used to select those elements which are the first-child elements. For :first-child selector the <!DOCTYPE> must be declared for IE8 and… Read More
The :disabled selector is used to select the disabled element. This property is mostly used on the form elements.  Syntax: :disabled { // CSS property… Read More
The :root selector is used to select all the elements of an HTML Documents. This selector covers all the HTML elements or tags.  Syntax: :root… Read More
The :in-range selector is used to selecting all elements that are given within a particular range value. It is mostly used in an input element… Read More
The checked selector is used to select all checked elements in input tag and radio buttons. This selector is used with radio buttons, checkbox and… Read More