MelangeCSS Reference

Current Version: 1.0.0-RC4

Display ( Large Width )

Handles basic dispaly properties other than Flexbox. Flexbox is part of the Flexbox grouping.

Properties

Appearance

Setting appearance to 'none' is useful to create accessible but visually pleasing form elements.

appearance-none-l
Appearance None
.appearance-none-l {
  appearance: none;
}
appearance-auto-l
Appearance Auto
.appearance-auto-l {
  appearance: auto;
}
Display
db-l
Display Block
.db-l {
  display: block;
}
db-l
db-l
db-l
di-l
Display Inline
.di-l {
  display: inline;
}
di-l
di-l
di-l
dib-l
Display Inline Block
.dib-l {
  display: inline-block;
}
dib-l
dib-l
dib-l
dn-l
Display None
.dn-l {
  display: none;
}
dn-l
dn-l
dn-l
dfr-l
Display Flow Root / Clearfix
.dfr-l {
  display: flow-root;
}
With display: flow-root, the black box is safe.
 
Without display: flow-root, the black box contains only pain.
 
Screen Readers

For helping with markup needed for screen readers that you may not want shown to users using visual browsers

sr-only-l
Screen Readers Hide in browser UI
.sr-only-l {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
undo-sr-only-l
Screen Readers Undo sr-only, e.g. at a different breakpoint
.undo-sr-only-l {
  position: static;
  padding: 0;
  margin: 0;
  clip: auto;
  white-space: normal;
  width: auto;
  height: auto;
  overflow: visible;
}
Table Display
dt-l
Table Display Table
.dt-l {
  display: table;
}
dtc-l
Table Display Cell
.dtc-l {
  display: table-cell;
}
dtrow-l
Table Display Row
.dtrow-l {
  display: table-row;
}
dtrow-group-l
Table Display Row Group
.dtrow-group-l {
  display: table-row-group;
}
dtcolumn-l
Table Display Column
.dtcolumn-l {
  display: table-column;
}
dtcolumn-group-l
Table Display Column Group
.dtcolumn-group-l {
  display: table-column-group;
}
collapse-l
Table Display Border Collapse
.collapse-l {
  border-collapse: collapse;
  border-spacing: 0;
}