Files
2018-10-16 21:32:40 +05:30

429 B
Raw Blame History

title, localeTitle
title localeTitle
Use the flex Shorthand Property 使用flex速记属性

使用flex速记属性

您可以单独设置flex-grow flex-shrinkflex-basis属性。如果您需要查看所有这些值的值,可以使用以下格式在一行中执行flex: flex-grow flex-shrink flex-basis;

例:

#box-1 { 
    background-color: dodgerblue; 
    flex: 2 2 150px; 
    height: 200px; 
  }