增加标题之间的空间&段落

时间:2016-08-19 07:23:46

标签: html css

如果你在Snippet下面运行,你可以看到标题&之间有很大的空间。段落。

表示" 1。访问端口,控件和传感器" &安培; "所有案例"

但在网站上,其显示如下图:

enter image description here

所以我想增加"标题&段落&#34。

另外,我想增加每个单词之间的空间。我想要显示如下图像:

enter image description here



<div class="product-size-space-img"><img alt="" src="/media/wysiwyg/new-image.jpg" /></div>
<div class="product-size-space-content">
   <b>1. Access to ports, controls and sensors</b>
   <p>All cases we sell have access to all ports, buttons, camera and sensors, there won&rsquo;t be any interference with your phone censors. Fully compatible with regular charges and headphones.</p>
   <b>2. Protect it from bumps and drops</b>
   <p>This case is made of light, durable and slim material called polycarbonate, it is hard plastic with high impact resistance and low scratch resistance. It is flexible enough to snap on to your phone with ease and strong enough to protect it from&ensp;&ensp; bumps, scratches and accidental drops.</p>
   <b>3.Lay-flat bezel raise lip </b>
   <p>Raised lip around the sides of the case protects your screen from directly contacting surfaces on accidents drops.</p>
   <b>4. High quality printing</b>
   <p>Site1 name uses image transfer technologies which results high quality designs embedded right onto the surface of the phones cases, so there won&rsquo;t be any peeling off or wearing off or chipping on your case design.</p>
</div>
<div style="clear: both;">&nbsp;</div>
&#13;
&#13;
&#13;

3 个答案:

答案 0 :(得分:1)

删除margin&amp;在line-height p

上添加tag
p {
    line-height: 30px;
    margin: 0;
}

答案 1 :(得分:1)

在标题和段落之间以及每个单词空间之间尝试以下代码:

p {
  line-height: 25px;
  margin: 15px 0;
  word-spacing: 5px;
}
<div class="product-size-space-img"><img alt="" src="/media/wysiwyg/new-image.jpg" /></div>
<div class="product-size-space-content">
<b>1. Access to ports, controls and sensors</b>
<p>All cases we sell have access to all ports, buttons, camera and sensors, there won&rsquo;t be any interference with your phone censors. Fully compatible with regular charges and headphones.</p>
<b>2. Protect it from bumps and drops</b>
<p>This case is made of light, durable and slim material called polycarbonate, it is hard plastic with high impact resistance and low scratch resistance. It is flexible enough to snap on to your phone with ease and strong enough to protect it from&ensp;&ensp; bumps, scratches and accidental drops.</p>
<b>3.Lay-flat bezel raise lip </b>
<p>Raised lip around the sides of the case protects your screen from directly contacting surfaces on accidents drops.</p>
<b>4. High quality printing</b>
<p>Site1 name uses image transfer technologies which results high quality designs embedded right onto the surface of the phones cases, so there won&rsquo;t be any peeling off or wearing off or chipping on your case design.</p>
</div>
<div style="clear: both;">&nbsp;</div>

答案 2 :(得分:0)

增加标题和标题之间的空间。段落,你可以使用br:)

要增加每个单词之间的空间,您必须使用CSS样式

相关问题