How to make the text as numbered 1 using HTML / CSS / PHP?
I only get 2 option
Flex solution
div{ display: inline-flex; flex-direction: column; align-items: flex-end; }
<div> <span>abc - [AA] abc</span> <span>[BB] abc</span> </div>
Solution via table
table
<table> <tr> <td>abc - </td> <td>[AA] abc</td> </tr> <tr> <td></td> <td>[BB] abc</td> </tr> </table>
Source: https://ru.stackoverflow.com/questions/887218/More articles:No access to classmates from the “Share” blockDevelopment of regedit analog in Windows [closed]Redirection of possible variables in .htaccessunable to set post request laravelAssign a value to one element from another arraysearch mySQL table in phpWordPress base acceleration [closed]ExpandableListView android: dividerHeight between groups of items?How to move the minimum element after the maximum in the listI can not make an http request for CAll Articles