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.

Progate HTML/CSS中級編①

Posted at

未来電子テクノロジー(https://www.miraidenshi-tech.jp/intern-content/program/
で、インターンをしているたくみです。
今回はこれまでに取り組んできたProgate HTML/CSSの中級編の一部をまとめてみました。
###ヘッダーとフッダーの使い方


 <header></header>
 <div class="top-wrapper"></div>
 <footer></footer>

###背景画像の指定方法

html・・・
<div>
<h1>Learn code</h1>
</div>

CSSの指定・・・
div{
height:〇〇px;
background-image:url(〇〇〇〇);
}

###画像の大きさの指定

div{
background-image:url(〇〇〇〇);
back-ground-size:cover;
}

```html
text-align:left;
text-align:right;
text-align:center;

###最後に
プログラミング初心者であるため、内容に誤りがあるかもしれません。
もし誤りがあれば、修正するので、どんどん指摘してください。

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?