LoginSignup
0
0

More than 5 years have passed since last update.

CSS:横幅めいいっぱいの背景画像をbodyに指定する

Posted at

詳しいことはわからないけれど難しいことしなくてもこれで動いてる.

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    background-image: url(画像のパス);
    background-repeat: no-repeat;
    background-size: 100% auto;
}
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