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.
This commit is contained in:
Rufaro Madamombe
2018-12-10 02:20:43 +02:00
committed by Randell Dawson
parent 61f94274eb
commit 8f20aaf0b9

View File

@ -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;