Form padding differences in Firefox and Opera/Chrome/IE

前端 未结 5 728
时光取名叫无心
时光取名叫无心 2020-12-09 10:21

I\'m having a problem with the padding in my form on my website. If I\'ve set a height/width to a form element and then adds a padding to it. In all browsers I\'ve tried, ex

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-09 10:42

    Try this:

    /* Set all margins and paddings to 0 on all browsers */
    
    * {
        margin: 0;
        padding: 0;
    }
    

提交回复
热议问题