我需要我的代码帮助。 我有一个与Css相关的小的html代码来创建新闻稿。
背景稳定。 徽标的上部应在白色背景上看到。
中间是一个带有文本的框,该框上应该是图片。 我玩过z-index,但在Box下方仍然会消失。
#Textblock {
background-color: hsla(0, 0%, 0%, 0.75);
box-shadow: 0px 0px 15px black;
width: 100%;
margin: auto;
height: 50%;
z-index: 2;
border: 1px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
position: relative;
bottom: 0;
right: 0;
text-align: left;
}
#Bildschirmeinheit {
z-index: 999;
margin-left: 20px;
}
图片应仅重叠框的一半。
应该是什么样子