1
votes

I have included the property as given below in the CSS:

p {
   font-size: 2.5vw; 
   font-size: 2.5vh;
}

Does this create any issues?

1
NO...........it will consider second font-size - Dinesh Kanivu
It might be helpful to learn what CSS means - Zach Saucier

1 Answers

2
votes

No, the value will simply be 2.5vh since it comes later. There is no special cascading behavior for any particular unit.