texto com opacidade css code example
Example 1: text transform in css
/*HTMl*/
Initial String
Lorem ipsum dolor sit amet
This will be capitalize
/*CSS*/
.heading {
text-transform: capitalize;
}
/*OTHER TEXT TRANSFORM*/
text-transform: none;
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: full-width;
text-transform: full-size-kan
Example 2: css opacity
.div{
opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}