Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

id starts with css

/*
	This will select all div elements with an ID 
	starting with my-id- using [arrtibute^=value] 
*/
div[id^="my-id-"] {
	/* add styles here */ 
}
 
PREVIOUS NEXT
Tagged: #id #starts #css
ADD COMMENT
Topic
Name
9+3 =