Answers for "get first element with properities css"

CSS
4

css style for the first element only

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

css first element

p:first-child {
  font-size: 1.5em;
}
Posted by: Guest on March-11-2020

Code answers related to "get first element with properities css"

Browse Popular Code Answers by Language