tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

height-keyword-classes.css (577B)


      1 /* In the current spec for heights, min-content, max-content and fit-content are
      2 * equivalent.
      3 */
      4 
      5 .min-content {
      6    height: min-content;
      7 }
      8 
      9 .max-content {
     10    height: max-content;
     11 }
     12 
     13 .fit-content {
     14    height: fit-content;
     15 }
     16 
     17 .max-height-min-content {
     18    max-height: min-content;
     19 }
     20 
     21 .max-height-max-content {
     22    max-height: max-content;
     23 }
     24 
     25 .max-height-fit-content {
     26    max-height: fit-content;
     27 }
     28 
     29 .min-height-min-content {
     30    min-height: min-content;
     31 }
     32 
     33 .min-height-max-content {
     34    min-height: max-content;
     35 }
     36 
     37 .min-height-fit-content {
     38    min-height: fit-content;
     39 }