From bf3d5854f4b347a4eb868ce816d3fa1f59729f39 Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 10 Dec 2018 01:06:10 +0100 Subject: [PATCH] fixed indentation (removed tab) (#32173) --- guide/english/css/background-opacity/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/background-opacity/index.md b/guide/english/css/background-opacity/index.md index 8c20f8a75e..04fd0a32b5 100644 --- a/guide/english/css/background-opacity/index.md +++ b/guide/english/css/background-opacity/index.md @@ -52,7 +52,7 @@ Alternatively you can use a transparent rgba value like this: .class-name{ background-color: rgba(0,0,0,.5); - } +} ``` The example above sets the background to be black with 50% opacity. The last value of an rgba value is the alpha value. An alpha value of 1 equals 100%, and 0.5 (.5 for short) equals 50%. We use this method to add transparency to an element without affecting the content inside.