79643313

Date: 2025-05-29 04:58:12
Score: 1
Natty:
Report link

2025 update

Visual 'manipulation' of the DOM using display: contents which plays nicely with grid/flex.

Taken from the following stackoverflow question/answer:

With Source:

span {
    display: contents;
    font-size-adjust: 0;  /* or other adjustment method */
}

span:before {
    display: inline-block; /* or as preferred */
    font-size-adjust: initial;  /* and reset other adjustment method */
}

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dj.cowan