Change
height using CSS

后端 未结 11 2050
别那么骄傲
别那么骄傲 2021-01-30 08:20

I have seen a question here about the same, but I can\'t get any of the answers to work (at least on Chrome).

This question is only for
, I know

11条回答
  •  遥遥无期
    2021-01-30 08:47

    As the 'margin' doesn't work in Chrome, that's why I used 'border' instead.

    br {
      display: block;
      content: "";
      border-bottom: 10px solid transparent; // Works in Chrome/Safari
    }
    @-moz-document url-prefix() {
      br {
        margin-bottom: 10px; // As 'border-bottom' doesn't work in firefox and 'margin-bottom' doesn't work in Chrome/Safari.
      }
    }
    

提交回复
热议问题