Search
 
SCRIPT & CODE EXAMPLE
 

CSS

get element with href css

a[href$='.pdf'] { /*css*/ }
Comment

get element with href css

E[foo]        an E element with a "foo" attribute (CSS 2)
E[foo="bar"]  an E element whose "foo" attribute value is exactly equal to "bar" (CSS 2)
E[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)
E[foo^="bar"] an E element whose "foo" attribute value begins exactly with the string "bar" (CSS 3)
E[foo$="bar"] an E element whose "foo" attribute value ends exactly with the string "bar" (CSS 3)
E[foo*="bar"] an E element whose "foo" attribute value contains the substring "bar" (CSS 3)
E[foo|="en"]  an E element whose "foo" attribute has a hyphen-separated list of values beginning (from the left) with "en" (CSS 2)
Comment

PREVIOUS NEXT
Code Example
Css :: css has parent selector 
Css :: css outline shorthand 
Css :: css hover after 
Css :: css height 100 not working 
Css :: what happens when the width is 0 and there is a border and box-sizing is set to border-box? 
Css :: css add space right 
Css :: efectos imagenes css 
Css :: neumorphism css generator 
Css :: content-visibility 
Css :: css structure 
Css :: display block 
Css :: css nested class 
Css :: button hover animation css codepen 
Css :: sass use 
Css :: css loader 
Css :: how to remove list style in css 
Css :: why wont text color of a div change 
Css :: easyui datagrid header wrap 
Css :: cl image tag width 
Css :: background shorthand code 
Css :: when grepper whas created 
Css :: easyui datagrid header color 
Css :: css to exclude last row table 
Css :: how to solve your coading bugs 
Css :: image rendering values css 
Css :: youtube-dl forbidden 
Css :: Table Print Cut off right side 
Css :: horizontal scrollbar css style 
Css :: css every other element than self 
Css :: sass variables across files 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =