min/max width/height with multiple values

前端 未结 5 1168
执笔经年
执笔经年 2021-01-01 11:56

Edit in 2020 (min, max, clamp functions)

To anyone who get here by search engines:

CSS min / max / clamp functions had got some supports in recent (2020) bro

5条回答
  •  耶瑟儿~
    2021-01-01 12:52

    You can try as mention below

    .some_element {
        background: red;
        float: left;
        width: auto;
        width: 50%; 
        max-width: 200px;        
    }
    

提交回复
热议问题