tor-browser

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

width-keyword-classes.css (664B)


      1 /*
      2    Take every possible line break so the box width is the width of largest
      3    unbreakable line box.
      4 */
      5 .min-content {
      6    width: min-content;
      7 }
      8 
      9 .max-content {
     10    width: max-content;
     11 }
     12 
     13 /*
     14   Shrink wrap just like floating.
     15   max(min-content, min(max-content, fill-available))
     16 */
     17 .fit-content {
     18    width: fit-content;
     19 }
     20 
     21 .max-width-min-content {
     22    max-width: min-content;
     23 }
     24 
     25 .max-width-max-content {
     26    max-width: max-content;
     27 }
     28 
     29 .max-width-fit-content {
     30    max-width: fit-content;
     31 }
     32 
     33 .min-width-min-content {
     34    min-width: min-content;
     35 }
     36 
     37 .min-width-max-content {
     38    min-width: max-content;
     39 }
     40 
     41 .min-width-fit-content {
     42    min-width: fit-content;
     43 }