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 3 years have passed since last update.

railsで画像をファイルに配置して、表示させ、装飾させる方法

Posted at

はじめに

 アプリケーションのUIを整えるために画像を使った。配置する場所や装飾の方法を記録しておく。

画像の表示

配置

app/assets/imagesに配置した。

表示させる

 表示は、HTMLに

html.erb
<%= image_tag "ファイル名.png", class:"chat-image" %>

サイズの変更

 サイズの変更はCSSにwidthheightで装飾する。

.chat-image {
  width: 50px;
  opacity: 0.5;
}

opacityによって透明度を変えることもできる。

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?