我试图得到一个黑色div的不透明度为.5但div(h3标签)的内容是不透明的1.所以白色文本仍然是白色的,它的不透明度没有改变/未触及.
<div style="background-color:red;">
<div style="width:470px;color:white;margin-top:170px;">
<div style="background-color:black;opacity:0.5;">
<h3 style="color:white;opacity:1;">Heading </h3><p>tagline here</p>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
任何建议非常感谢.
我正在尝试从json post请求获取标头内容.但我似乎无法在requesthandler中找到它的方法...
print_r($this->request); 没有显示任何有用的东西.我试过了
$this->request['head'];
$this->request['header'];
$this->request->getHeaders;
Run Code Online (Sandbox Code Playgroud)
这些都不起作用