Make new line without using
in HTML

前端 未结 7 1468
时光取名叫无心
时光取名叫无心 2021-02-02 10:58

I want to make each one of these element is different line, without using
in HTML,

is block element but I have to fix its

7条回答
  •  暖寄归人
    2021-02-02 11:12

    Start by removing float: left from h1.

    Then add the rule:

    a.view-options {
        display: block;
    }
    

提交回复
热议问题