I have this html output:
  return '<div class="band"><i class="'.USER.'" aria-hidden="true"></i> '.(isset($_SESSION['logedAs'])? $_SESSION['logedAs'] : null).' <i class="'.$icon.' ribbon" aria-hidden="true"></i> '.$ribbon.'</div>';
and i need to add brake before icon with class 'ribbon'.
I tried with this in CSS but it won't work:
.ribbon span::before { 
        content: "\A";
        white-space: pre;;
}
 
    