我想知道"如何在不改变div内容的情况下改变背景图像的不透明度?"
我搜索得太多了,我找不到解决这个问题的好答案!
HTML
<div class="div-1">
<h2>title</h2>
<p>text</p></div>
Run Code Online (Sandbox Code Playgroud)
CSS
.div{
position:relative;
width:200px;
height:200px;
float:left;
color:white;
background:#7a8586 url('url') no-repeat local right;
overflow:hidden;
text-align: justify;
font-family:arial;
font-size:14px;}
Run Code Online (Sandbox Code Playgroud)