There is nothing more actually.
.column defines boundaries and paragraph should be inside 30%.
Rendering box is defined by .column.
Will be paragraph setting always inside boundaries of ID or CLASS elements?
It is hard to give all code due to complex issues. But this boundary (columns) are inside wrapper:
.wrapper {
float: left;
width: 100%;
}
I have done searches. If you have long URL like Amazon URL it will be needed
.comment-text {
word-wrap: break-word;
}
Solution was proposed:
-ms-word-break: break-all;
/* Be VERY careful with this, breaks normal words wh_erever */
word-break: break-all;
/* Non standard for webkit */
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
URL: [
css-tricks.com...]
See this example:
<div class=class="wrapper">
<div class=class="column">
<h4>Without break-word</h4>
<p>URL or any text
[
mydomain.com_title_with_a_long_url_XXXXXXXXXXX...]
</p>
<div class=class="column">
<h4>Without break-word</h4>
<p>URL or any text
[
mydomain.com_title_with_a_long_url_XXXXXXXXXXX...]
</p>
</div>
</div>
[edited by: toplisek at 7:47 am (utc) on Mar 27, 2014]