1st span css code example
Example 1: css first h element
p:first-of-type {
font-size: 1.25em;
}
Example 2: first-child
p:first-child {
background-color: yellow;
}
p:first-of-type {
font-size: 1.25em;
}
p:first-child {
background-color: yellow;
}