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?

cssのtransparentについて理解する

Last updated at Posted at 2024-10-20

概要

transparentとは

  • 色を決めるプロパティの値に使われるもので設定すると透明になります
  • 透明度の調整ができないです

背景 🖼️

業務のcssのコードを見ているとtransparentというものがあり、初めて知りました。
cssのスキルが伸び代しか無い為、今回はtransparentについて勉強します。

transparentとは 🕵️

色を決めるプロパティの値に使われるもので設定すると透明になります。

背景色をtransparentにする 🎨

See the Pen Untitled by 山根大生 (@uuylkesg-the-styleful) on CodePen.

以下は同じです。

background-color: transparent;
background-color: none;

枠線をtransparentにする 🎨

See the Pen Untitled by 山根大生 (@uuylkesg-the-styleful) on CodePen.

border-color: transparent;は境界線の色のみを透明にします。

境界線の幅は実際にはあります。

image.png

注意点 🚨

こちらの記事にも紹介されていましたが、透明度の調整ができないことです。

参考 ✨

最後に

transparentについて少しは理解できました。

0
0
3

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?