LoginSignup
1
0

More than 3 years have passed since last update.

margin-topを指定したら親要素を超えて上にはみ出た問題 ❏CSS❏

Last updated at Posted at 2019-11-29

すべてのツイートにmargin-top: 30px;をしています。
しかし、一番上のツイートは親要素にmarginがあたってしまっています。
本来は一番上も白色にしたいのです。伝われ。

xxx.css
.tweet {
  margin-top: 30px;
  
}


82ad18aa3f671a1a012c445094a333a3.png

fgfgf.png


【答え】親要素に overflow: hidden;

xxx.css
.tweets {
  overflow: hidden;
  
}

.tweet {
  margin-top: 30px;
  
}

これで解決!やったね!!

参考

http://seto-abe.hatenablog.com/entry/2016/12/06/153305



ではまた!

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