Add empty space between div's content and bottom border

后端 未结 4 722
孤城傲影
孤城傲影 2021-01-17 11:52

I am attempting to add a bottom border to a div for the purpose of a navigation bar. The effect I am trying to achieve:

4条回答
  •  臣服心动
    2021-01-17 12:27

    demo

    new css:

    .container {
    }
    
    .container .item {
      float: left;
      list-style-type: none;
      margin: 0 1px;
      border-bottom: 8px solid red;  
    }
    
      .container .item a {
        color: black;
        text-decoration: none;
        background-color: green;
        width: 50px;
        font-size: 13px;
        text-align: center;
        font-weight: bold;
        display: table-cell;
        vertical-align: middle;
        height: 40px; 
              border-bottom: 4px solid white;  
      }
    
        .container .item a.current {
        }
    

提交回复
热议问题