打印问题时列之间的间距

时间:2016-04-12 04:17:05

标签: html css html5 twitter-bootstrap

使用chrome打印时遇到问题

拖车箱之间的空间未显示

<style>
    .textstyle2
    {
        border: 1px solid;
        border-radius: 10px;
        padding: 10px 15px;
    }
</style>

HTML

<div class="row">
<div class="col-xs-5 text-left textstyle2">
    <p>Text</p>
    <br />
    <p>Text</p>
</div>

<div class="col-xs-5 col-md-offset-2 text-right textstyle2">
    <p class="text-left">Text</p>
    <br />
    <p class="text-left">Text</p>
</div>

1 个答案:

答案 0 :(得分:1)

使用此:See DEMO

.textstyle2
{
    border: 1px solid;
    border-radius: 10px;
    margin-right: 15px;
    padding: 10px 15px;
}