min/max width/height with multiple values

前端 未结 5 1167
执笔经年
执笔经年 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:48

    You cannot set max-width to both 200px and 50%. You could put the element in another element with max-width of 400px:

    Text here
    #parent { background-color: red; max-width: 400px; } #child { background-color: green; max-width: 50%; }

提交回复
热议问题