How to style PHP echo output with span

前端 未结 4 584
傲寒
傲寒 2021-01-23 16:32

I\'m trying to style the output of each echo.

Ideally I\'d like to use for each echo, but I\'m not too sure how to ach

4条回答
  •  离开以前
    2021-01-23 16:44

    You are guessing right, just add required html in the echo:

    echo '';
    

    or you can just put inline style if no css file is loaded:

    echo '';
    

提交回复
热议问题