我真的很想知道如何在页面中间添加一个半透明的矩形,而不覆盖所有文本。我试着添加白色背景,降低不透明度:每年{浮动:右边;右边距:500 px;背景色: Azure ;- moz-不透明度:0.7; -khtml-不透明度:0.7;不透明度:0.7;文本最后对齐;} p.w {背景色: Azure ;- moz-不透明度:0.7; -khtml-不透明度:0.7;不透明度:0.7;文本最后对齐;}
v2g6jxz61#
你试过绝对位置吗?这就是你如何在你的页面中放置一个元素。至于不透明度,像这样怎么样?
.container{ height: 100vh; background-color: black; position: relative; .rectangle{ width: 300px; height: 200px; border: 1px solid yellow; background-color: rgba(247,30,28,0.5);//0.5=half position: absolute; top: 10%;//anywhere you want right: 30%; // anywhere you want //left & bottom color: white; } }
1条答案
按热度按时间v2g6jxz61#
你试过绝对位置吗?这就是你如何在你的页面中放置一个元素。至于不透明度,像这样怎么样?