Answers for "how to get first p of div css"

CSS
4

css first h element

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

Browse Popular Code Answers by Language