Sir I have these codes
<html>
<head>
<title>untitled</title>
<style type="text/css">
#box5{
margin:10px;
width:250px;
height:250px;
border:1px solid green;
overflow:auto;
float:left;
background-size:50%;
background: url(https://developer.mozilla.org/media/img/mdn-logo.png);
background-repeat:no-repeat;
background-position:center;
padding:20px;
opacity: 0.2;
}
#box5 p{
opacity:1;
color:red;
font-size:18;
font-weight:bolder;
}
</style>
</head>
<body>
<div id="box5">
<p>This text is normat text over opacity background</p>
</div>
</body>
</html>
the problem is text is not showing in normal form.
text is also showing in div opacity mode.
I want to display text in normal form.
So I used this command
#box5 p{
opacity:1;
color:red;
font-size:18;
font-weight:bolder;
}
But Failed.
Please help