<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>hover</title>
</head>
<body>
    <style type="text/css">
        .s1{
            /*background-color: gold;*/
            font-size:0;
        }

        .s1 span{
            width:98px;
            height: 30px;
            border:1px solid black;
            display:inline-block;
            padding: 0;
            font-size:16px;
            margin-left:-1px;
            text-align: center;
            line-height: 30px;
        }

        .s1 span:hover{
            background-color: gold;
        }
    </style>

    <div class="s1">
        <span>标题</span>
        <span>标题</span>
        <span>标题</span>
        <span>标题</span>
    </div>
</body>
</html>

  

相关文章:

  • 2022-02-14
  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
  • 2021-06-09
猜你喜欢
  • 2021-10-16
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
相关资源
相似解决方案