From 0e8891956a403dce2d9af0777f321afcae770c4b Mon Sep 17 00:00:00 2001 From: Agnes Brettl <42897234+brettl1991@users.noreply.github.com> Date: Fri, 29 Mar 2019 00:28:41 +0000 Subject: [PATCH] Explore definition an usage for opacity (#27226) --- guide/english/css/image-opacity-and-transparency/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/guide/english/css/image-opacity-and-transparency/index.md b/guide/english/css/image-opacity-and-transparency/index.md index e19442415a..b296807395 100644 --- a/guide/english/css/image-opacity-and-transparency/index.md +++ b/guide/english/css/image-opacity-and-transparency/index.md @@ -8,6 +8,9 @@ The ```opacity``` property allows you to make an image transparent by lowering h ```Opacity``` takes a value between 0.0 and 1.0. 1.0 is the default value for any image. It is fully opaque. +(default) + +Note: When using the opacity property to add transparency to the background of an element, all of its child elements become transparent as well. This can make the text inside a fully transparent element hard to read. If you do not want to apply opacity to child elements, use RGBA color values instead. Example: ```css