firefox adds strange space arround Pseudo-elements

后端 未结 3 1858
别跟我提以往
别跟我提以往 2021-01-24 06:25

Take a look at these photos
JSFiddle link at the bottom

firefox:
\"enter

3条回答
  •  一生所求
    2021-01-24 07:11

    Maybe try positioning the like absolutely using CSS

    .like{
    float: left; 
    height: 30px; 
    margin: 12.5px 0; 
    background-color: #FAFAFA; 
    border-radius: 4px; 
    position:relative;
    padding: 0 10px 0 40px; 
    margin: 12.5px 10px; 
    background-color: #000; 
    font: 16px/30px arial; 
    color: #FFF; 
    border:none;}
    
    .like::before{
    position:absolute; top:0; left:0; 
    width:30px; 
    content: 'like'; 
    margin: 0 10px 0 0; 
    padding: 0 5px;
    background-color: #FF7373; 
    color: #FFF; 
    border-right: 1px solid #CCC; display:block; border:0;
    }
    

提交回复
热议问题