align right in a table cell with CSS

后端 未结 4 1374
走了就别回头了
走了就别回头了 2020-12-09 00:27

I have the old classic code like this


which does what it says: it right aligns the content in the cell. So if I

4条回答
  •  一个人的身影
    2020-12-09 01:02

    What worked for me now is:

    CSS:

    .right {
      text-align: right;
      margin-right: 1em;
    }
    
    .left {
      text-align: left;
      margin-left: 1em;
    }
    

    HTML:

    See the following fiddle:

    http://jsfiddle.net/Joysn/3u3SD/

提交回复
热议问题