how to delete extra space between buttons?

前端 未结 9 2082
情歌与酒
情歌与酒 2020-12-28 16:13

please check out this code in jsfiddle

HTML:


      
      
9条回答
  •  被撕碎了的回忆
    2020-12-28 16:53

    Try this(JSFiddle)

    CSS

    #main {
        
        height: 25em;
    }
    
    #menu {
        background-color: #00b875;
        height: 3em;
    }
    
    .buttons {
        text-decoration: none;
        color: #ffffff;
        line-height: 3em;
        display: inline-block;
        padding-left:5px;
        padding-right:5px;
        font-family: courier new;
        -moz-transition: 1s linear;
        -ms-transition: 1s linear;
        -o-transition: 1s linear;
        -webkit-transition: 1s linear;
        transition: 1s linear;
    }
    
    .buttons:hover {
        background-color: #0d96d6;
    }
    

提交回复
热议问题