Wrap text from bottom to top

后端 未结 8 875
长发绾君心
长发绾君心 2020-12-06 09:55

Anybody know how I could wrap the text in reverse order, from bottom to top? I attached an example image.

[\"\"

相关标签:
8条回答
  • 2020-12-06 10:38

    Wrap and Nowrap will be rendered by the client-browser, so you can not force the browser to wrap from bottom to top. but you can do that with javascript or asp.

    0 讨论(0)
  • 2020-12-06 10:39

    There is no general css solution for it. You must have to utilize help of any language. This is one of the solution using PHP:

    <?php
    $str= "This is what I want to achieve with your help";
    $str = strrev($str);
    $exp = str_split($str,18);
    $str = implode(">rb<", $exp);
    echo strrev($str);
    ?>
    
    0 讨论(0)
提交回复
热议问题