新浪导航--padding撑开盒子,不是width

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        
        
        a {
            display: inline-block;
            padding: 10px 30px;
            background: pink;
            text-decoration: none;
            color: grey;
        }
        
        a:hover {
            background: blue;
        }
    </style>
</head>

<body>
    <a href="#">新浪导航1</a>
    <a href="#">新浪导航22</a>
    <a href="#">新浪导航333</a>
    <a href="#">新浪导航4444</a>
    <a href="#">新浪导航55555</a>
</body>

</html>
posted @ 2021-03-25 15:32  ice猫猫3  阅读(68)  评论(0编辑  收藏  举报