0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

HTML&CSSの学習記録1

Last updated at Posted at 2019-04-28

日付

4月26日、28日(時間:76分 Togglで管理)

教材

progate:HTML & CSS 学習コース 初級編 1〜13

分からないときは下記を参考にしました
mdn html
mdn css

感想

ドットインストールですでに講座を終えていたからついていけたが、何も知らない状態でやっていたら挫折していたと思う

気になったこと

同じコードをATOMに引き写して確認していた時、プレビューどおりにならなかった(レッスン13)

リストとタイトルの下に空白が出現(コードは下記)

index.html
      <div class="header-logo">
        XXXXX
      </div>

      <!-- <div>要素を追加し、「header-list」というclassをつけてください -->
      <div class="header-list">
        <ul>
          <li>1</li>
          <li>2</li>
          <li>3</li>
        </ul>
      </div>

XXXXX
→この空白が謎←
li1
li2
li3

検証するとulのmarginと判明

とりあえず下記のコードで対処

stylesheet.css
ul{
  margin-top: -6px;
}

きれいな対処方法かはわからないが、同じようになった

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?