CSS Button has a border

前端 未结 7 464
旧巷少年郎
旧巷少年郎 2021-01-23 21:58

I am trying to define a custom css button for my search form. I cant figure out why this particular button has a strange border around it? I need to get it removed but cannot

7条回答
  •  无人共我
    2021-01-23 22:30

    Button has border, and background by default.

    Remove them, and will be good.

    But i dont think its valid to add span into button.

    Solution is here: (css)

    button.button-search { background: transparent; border: none; position:absolute; right:10px; top:8px; } 
    

提交回复
热议问题