I want distribute some links in columns. I use this css:
.cols{
float: left;
width: 25%;
white-space: nowrap;
}
HTML:
<div class="CRMP_WP_QUICKADS_cols">
text...
</div>
The image show the resulting output:
How can avoid overlapping?
Possible solutions:
overflow: hidden; text-overflow:
ellipsis;