去除button默认样式

不加样式之前的:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            
        </style>
    </head>
    <body>
        <button>按钮</button>
    </body>
</html>

 

 

加了样式后:
<style>
            button{
                border:none;
            }
        </style>

 

posted @ 2022-01-03 10:34  zlloiiyt  阅读(411)  评论(0)    收藏  举报