栏中栏

 

 

 

 

    .view>div:nth-child(1)>div {
          width: 100%;
          line-height: 40px;
          text-align: center;
          position: relative;
        }
        .view>div:nth-child(1)>div:hover { /*只是做一个示例,真实中可不是hover*/
          color: red;
          background-color: #ffffff;
        }
        .view>div:nth-child(1)>div:hover::before {
          content: '';
          display: block;
          position: absolute;
          left: 0px;
          top: 0px;
          bottom: 0px;
          width: 4px;
          background-color: red;
         
        }

 

posted @ 2021-06-17 20:59  小庄的blog  阅读(35)  评论(0编辑  收藏  举报