单词压扁而不是隐藏

时间:2014-01-24 19:27:49

标签: html css

我在一个按钮中有“+添加”文字。当我按下按钮的宽度时,我希望“添加”消失,但保留“+”。通常情况下我会说overflow: hidden;,但我可以说,因为我position: absolute;无效。最终我可能不得不将其更改为position: relative;并弄乱布局,但任何人都可以告诉我为什么会这样吗?

.add_button{
    display: inline-block;
    font-family: 'EntypoRegular';
    color:white;
    font-size: 34px;
    line-height: 1px;
    overflow:hidden;
    padding: 0px;
    position: absolute;
    box-shadow: rgb(1, 97, 253) 0px 0px 0px 1px inset, rgb(153, 191, 254) 0px 1px 1px 1px inset;
    cursor: pointer;  
    overflow: hidden;
    text-decoration: none solid rgb(255, 255, 255);    
    background: rgb(77, 144, 254) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 2px 2px 2px 2px;
    outline: rgb(255, 255, 255) none 0px;
    margin: 7px 0px;
    width: 15%;
    left: 39%;
}

0 个答案:

没有答案