LoginSignup
0
0

More than 5 years have passed since last update.

テキスト丸め込み、画像暗くするメモ

Last updated at Posted at 2018-04-17

テキスト丸め込みメモ

画像を暗くするときは、rgba(color,opacity)functionをbeforeで使う

SCSS
.text {
  overflow: hidden; //topics部分と2箇所かける
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mainVisual {
  background: url("sample.png") no-repeat center top/cover;
  border-bottom: 1px solid $color-aaaaaa;
  height: 220px;
  position: relative;

  &::before {
    background-color: rgba($color-000000,0.4);
    bottom: 0;
    content: " ";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
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