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.

background-image よく使うパターンをメモ

Last updated at Posted at 2018-04-27

目的

background-imageで、よく使うパターンをメモ

sample01

スクリーンショット 2018-04-28 0.25.17.png
slim
  .pra
    h1 NIKE NIKE NIKE
sass
h1 {
  border-bottom: 1px solid black;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: image-url("lego.jpg");
  background-position: right bottom;
}

sample02

スクリーンショット 2018-04-28 0.25.22.png
slim
  .pra
    h2 NIKE NIKE NIKE
sass
h2 {
  text-align: center;
  border-bottom: 1px solid black;
  background-repeat: no-repeat;
  background-size: contain;
  background-image:
    image-url('lego.jpg'),
    image-url('lego.jpg');
  background-position:
    left bottom,
    right bottom;
}

sample03

スクリーンショット 2018-04-28 0.25.28.png
slim
  .pra
    .contain
      h3 NIKE NIKE NIKE NIKE NIKE NIKE
      p
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
        br
        | Just Do It Just Do It Just Do It Just Do It Just Do It Just Do It
sass
.contain {
  background-image: image-url('lego.jpg');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 40px;
  padding-left: 60px;
  h3 {
    padding-bottom: 10px;
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  p {
    color: blue;
  }
}

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?