CSS No Text Wrap


Answer :

Additionally to overflow:hidden, use



white-space:nowrap;


Just use:



overflow: hidden;
white-space: nowrap;


In your item's divs



Use the css property overflow . For example:



  .item{
width : 100px;
overflow:hidden;
}


The overflow property can have one of many values like ( hidden , scroll , visible ) .. you can als control the overflow in one direction only using overflow-x or overflow-y.



I hope this helps.



Comments

Popular posts from this blog

C Perror Example

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"