How to display “Classic” built-up fractions with an horizontal line in CSS / JavaScript?

前端 未结 10 2266
旧巷少年郎
旧巷少年郎 2020-12-03 13:37

I have a fraction and I want to display it neatly and nicely.

For example

4/5

would be

4
-
5

I have looked at this and

10条回答
  •  天命终不由人
    2020-12-03 14:29

    Use this

    6/7

    DEMO


    For straight line

    HTML

    2
    6

    CSS

    .top{border-bottom:solid black 1px; display:inline-block; float:left}
    .bottom{ display:inline-block; clear:left; float:left}
    

    ​DEMO 2

提交回复
热议问题