From 8f20aaf0b9b55983a967c5212c35ebef4419efae Mon Sep 17 00:00:00 2001 From: Rufaro Madamombe Date: Mon, 10 Dec 2018 02:20:43 +0200 Subject: [PATCH] Change plain text in sample code to be comments (#26703) In the sample CSS code, there were some notes to add some additional explanation on the code. Changed those notes to be code comments so that if a person copies and pastes the code samples then they will not face any errors since the notes are valid comments in code instead of being plain text which can't be interpreted. --- guide/english/css/background-opacity/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/css/background-opacity/index.md b/guide/english/css/background-opacity/index.md index 04fd0a32b5..c43ab992ef 100644 --- a/guide/english/css/background-opacity/index.md +++ b/guide/english/css/background-opacity/index.md @@ -20,7 +20,7 @@ You have to add the following CSS property to achieve the transparency levels. opacity:1; } -OR +/* OR */ .class-name { opacity:1.0; @@ -32,7 +32,7 @@ OR .class-name { opacity:0.5; } -Opacity value can be anything between 0 and 1; +/* Opacity value can be anything between 0 and 1; */ ``` #### Transparent @@ -41,7 +41,7 @@ Opacity value can be anything between 0 and 1; opacity:0; } -OR +/* OR */ .class-name { opacity:0.0;