LoginSignup
10
14

More than 5 years have passed since last update.

HTMLで要素の横幅を画面幅いっぱいに広げる

Last updated at Posted at 2017-04-15

方法は単純。

body {
    margin: 0;
}

#hoge {
    width: 100%;
}

と書けば、#hogeの横幅が画面幅いっぱいに広がる。bodymarginを0にするのがミソ。

10
14
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
10
14