Answers for "css only select first element"

CSS
4

css style for the first element only

p:first-of-type {
  font-size: 1.25em;
}
Posted by: Guest on March-11-2020
2

select first div css

#content div:first-child {
/*css*/
}
Posted by: Guest on May-08-2020
1

select first div css

#content_id div.class_name:first-child {
	/*your style*/
}
Posted by: Guest on September-11-2020

Code answers related to "css only select first element"

Browse Popular Code Answers by Language