[CSS 3] min(), max()

.card {
    width: min(700px, 90%, 70vw); // take the one currently is the min
    height: max(300px, 90%, 40vh); // take the one currently is the max
    font-size: min(max(16px, 3vh), 20px);
}

 

posted @ 2023-03-30 00:42  Zhentiw  阅读(20)  评论(0)    收藏  举报