如果内容超过html,如何显示点(....)

时间:2017-05-22 07:03:38

标签: html5 css3

我尝试过使用text-overflow:省略号;这个语法,但它没有用,任何人都可以帮助我

Html

   <div class="product-desc">
         <p>How to show dots if text is exceeds than the limit</p>
    </div>

我使用的风格

.product-desc{
    padding: 0.8em 1.5em;
    background: #337AB7;
    text-align: center;
     text-overflow: ellipsis;
}
.product-desc p{
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 0.5em;
    font-family: 'Carrois Gothic', sans-serif;
}

1 个答案:

答案 0 :(得分:1)

尝试以下方法:

.product-desc p{
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 0.5em;
    font-family: 'Carrois Gothic', sans-serif;
    width:180px;
    white-space: nowrap;
    overflow:hidden !important;
    text-overflow: ellipsis;
}