为什么底部h3标题会缩进?

时间:2019-02-06 17:47:01

标签: html html5 header

我添加两个标题:“教育”和“我的爱好”

为什么它们不对齐?

我遍历了代码并设法解决了一些嵌套列表问题,但是并不能解决上述问题。

<body>
    <h1>Vlad Myshchuk</h1>
    <p><em><strong>Software Engineer</strong><br>Full Stack Developer</em></p>
    <p>I am self-taught student of programming. My focus as a Software Engineer is primarily on Full Stack Software & Web Development. I hold a degree in Accounting A.A.S. as well as Computer Information Systems A.A.S.</p>
    <hr>
    <h3>Education</h3>
      <ul>
        <li>Hudson Valley Community College</li>
        <li>State University of New York College at Oneonta</li>
        <li>Recent courses at Udemy:
          <ul>
            <li>The Complete 2019 Web Development Bootcamp with Professor Angela Yu</li>
          </ul>
        </li>
        <li>Books
          <ul>
            <li>Pragmatic Thinking and Learning by Andy Hunt</li>
            <li>Code: The Hidden Language of Computer Hardware and Software by Charles Petzold</li>
            <li>Code Complete: A Practical Handbook of Software Construction by Steve McConell</li>
            <li>Clean Code: A Handbook of Agile Software Cragsmanship by Robert C. Martin</li>
          </ul>
        </li>

      <h3>My Hobbies</h3>
        <ol>
            <li>Completing algorithms on codechef.com and codingame.com</li>
            <li>Practice a variety of meditation and yoga.</li>
            <li>Weight training and high intensity interval training (HIIT).</li>
            <li>Reading books on psychology as well as philosophy.</li>
            <li>Listening to educational podcasts and recorded lectures.</li>
        </ol>

  </body>

我希望两个标题都位于最左侧。

2 个答案:

答案 0 :(得分:0)

我只是想输入一个错字,上面有一个未转义的h3标签。您可以使用以下便捷工具进行检查:https://www.aliciaramirez.com/closing-tags-checker/

<body>
  <h1>Vlad Myshchuk</h1>
  <p><em><strong>Software Engineer</strong><br>Full Stack Developer</em></p>
  <p>I am self-taught student of programming. My focus as a Software Engineer is primarily on Full Stack Software & Web Development. I hold a degree in Accounting A.A.S. as well as Computer Information Systems A.A.S.</p>
  <hr>
  <h3>Education</h3>
  <ul>
    <li>Hudson Valley Community College</li>
    <li>State University of New York College at Oneonta</li>
    <li>Recent courses at Udemy:
      <ul>
        <li>The Complete 2019 Web Development Bootcamp with Professor Angela Yu</li>
      </ul>
    </li>
    <li>Books
      <ul>
        <li>Pragmatic Thinking and Learning by Andy Hunt</li>
        <li>Code: The Hidden Language of Computer Hardware and Software by Charles Petzold</li>
        <li>Code Complete: A Practical Handbook of Software Construction by Steve McConell</li>
        <li>Clean Code: A Handbook of Agile Software Cragsmanship by Robert C. Martin</li>
      </ul>
    </li>
  </ul>
  <h3>My Hobbies</h3>
  <ol>
    <li>Completing algorithms on codechef.com and codingame.com</li>
    <li>Practice a variety of meditation and yoga.</li>
    <li>Weight training and high intensity interval training (HIIT).</li>
    <li>Reading books on psychology as well as philosophy.</li>
    <li>Listening to educational podcasts and recorded lectures.</li>
  </ol>

</body>

答案 1 :(得分:0)

亲爱的,你犯了一个愚蠢的错误。您必须完成

 </ul>

之前标记
<h3>My Hobbies</h3>

更正后,您的问题将得到解决。