📅  最后修改于: 2022-03-11 14:47:52.688000             🧑  作者: Mango
.content {
/*Choose the biggest value between these two values at any time*/
width:max(500px,70%);
/*equivalent to */
width:70%;
max-width:500px;
}