如何从我的网站html中删除空白区域

时间:2016-03-21 23:44:00

标签: html css html5

Locked_Timestamp

enter image description here

如何删除关于我+ Loreum Ipsum之间的空白区域?非常感谢能够帮助我的人,也感谢他们的积极参与者。标记正确,因为它在此代码中不起作用

2 个答案:

答案 0 :(得分:1)

你有这个:

<h1 class="intro">About Me</h1>
      <div class="about">
          <p class="about">

删除class="about"标记中的<p>(即将其设为常规<p>标记而不进行任何课程) - 这应该重置距离&#34;关于我&#34 ;标题到正常范围(现在它已加倍)。

答案 1 :(得分:0)

这应该是它。添加&#34; style =&#34; margin:0&#34;

<h1 class="intro" style="margin:0">About Me</h1>
                    <div class="about">
                            <span>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into.</span>
                    </div>

这是你在找什么?