0
2

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.

chatspaceを実装する際前の復習 CSS

0
Posted at

はじめに

この記事は、2019/11/1からプログラミング学習を始めた学生がプロのプログラマーになるまでのアウトプットする為の書き込みの場である。

問題

スクリーンショット 2019-12-06 22.29.45.png

回答

hello.css

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.contents {
  background-color: gray;
  height: 100%;
  width: 100%;
}

.left-content {
  background-color: red;
  height: 100% ;
  width: 300px;
  float: left;
}

感想

現在lineのようなチャット制作をしています
今までやってきたことを積み合わせた内容になってます
、、、正直とても難しいです( ͡° ͜ʖ ͡°)

終わりに

もっとこうした方が良いよなどご指摘頂けると幸いです

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?