CSS3 Question:

What is opacity in CSS3?

Tweet Share WhatsApp

Answer:

Opacity is used to show or hide the html element For example 0 for hide and 1 for show

<p style="opacity: 0">Show Me</p>
<p style="opacity: 0.5">Show Me</p>
<p style="opacity: 1">Show Me</p>

Download CSS3 PDF Read All 15 CSS3 Questions
Previous QuestionNext Question
What is the CSS3 animation?What is the syntax of opacity in CSS3?