In coustume-webkit.css I have this code:
.tabella .pagination > li:last-child > a:before, .tabella .pagination > li:last-child > span:before {
    padding-right: 5px;
    content: "avanti";
    width: 60px;
}
in html code I used pagination class like this:
      <ul class="pagination">
            <li class="paginate_button previous" [ngClass]="{'disabled': pageActive === 1}"
            </li>
            <li class="paginate_button" [ngClass]="{'active': page===pageActive}"
                *ngFor="let page of _totalPageSlice">               
            </li>
            <li class="paginate_button next" id="{{id}}_{{id}}_next"
                [ngClass]="{'disabled': pageActive === _totalPage}" label="_next">
            </li>
        </ul>
I want to manage the content: "avanti"; in this class from ts code. Can you give me an idea how to access the content: "avanti"; from ts code?
 
    