22nds
8/13/2017 - 9:03 AM

CSS hacks

CSS hacks

/* a instde a li - full width and height */

#menu li { padding: 0px; }
#menu li a { margin: 0px; display: block; width: 100%; height: 100%; }
@supports (property: value) {
 // css
}


@supports (initial-letter:4) or (-webkit-initial-letter: 4) {
  p::first-letter {
    color: rgba(255,255,255,0.9);
    font-weight: bold;
    margin:right;
    -webkit-initial-letter: 4;
    initial-letter: 4;
  }
}