【发布时间】:2016-06-17 20:08:14
【问题描述】:
在这个网站:getinjuryanswers.com,我添加了 CSS 列。它在 Chrome 和 Firefox 中运行良好,但内容不会显示在 Mac 上的 Safari 中。任何想法为什么?
HTML:
<div class="twocolumns col-md-12">
<p class="representation-text">
<p class="representation-text">Many cases settle out of court, you therefore need an effective negotiator on your side. Attorney Curtis Quay spent several years defending insurance companies against personal injury claims. He understands how they think and the games they play to deny you compensation. This gives you the upper hand during the negotiation process.</p>
<p class="representation-text">To recover for a personal injury case, you must prove the defendant was responsible for your harm. ITL has a strong network of investigators and professionals in San Diego to help build your case and get you the proper compensation. Proving damages can be complicated, but our lawyers have a proven track record of excellent results.</p>
</div>
CSS:
.twocolumns {
-webkit-column-count: 2;
-moz-column-count: 2;
/*column-count: 2;*/
-webkit-column-gap: 30px;
-moz-column-gap: 30px;
/*column-gap: 30px;*/
}
【问题讨论】: