get element with href css

Solutions on MaxInterview for get element with href css by the best coders in the world

showing results for - "get element with href css"
Myles
08 Mar 2017
1a[href$='.pdf'] { /*css*/ }
Pietro
12 Oct 2016
1E[foo]        an E element with a "foo" attribute (CSS 2)
2E[foo="bar"]  an E element whose "foo" attribute value is exactly equal to "bar" (CSS 2)
3E[foo~="bar"] an E element whose "foo" attribute value is a list of whitespace-separated values, one of which is exactly equal to "bar" (CSS 2)
4E[foo^="bar"] an E element whose "foo" attribute value begins exactly with the string "bar" (CSS 3)
5E[foo$="bar"] an E element whose "foo" attribute value ends exactly with the string "bar" (CSS 3)
6E[foo*="bar"] an E element whose "foo" attribute value contains the substring "bar" (CSS 3)
7E[foo|="en"]  an E element whose "foo" attribute has a hyphen-separated list of values beginning (from the left) with "en" (CSS 2)
similar questions
css link tagurl css