I have read Defining CSS properties twice but it does cover the code I am looking at.
I understand now what vmin is doing, but I do not understand how this code is working. When will the button be of height 200px, and when will be be the value obtained from vmin. What exactly does declaring an attribute twice mean?
.centerButton {
height: 200px;
width: 200px;
height: 50vmin;
width: 50vmin;
}
Thanks
I am looking at the source code from https://airhorner.com/ for reference.