我正在打算在我的網站頂部的兩個彩色橫幅,問題是正確的部分沒有響應,我試圖給它%,rem,px和vw,但似乎沒有任何工作。這是我的代碼,你可以看到藍色部分的寬度太大,郵件無法保持固定。 我如何可以使藍色部分佔據div的其餘製作兩個彩色的div響應
.banner {
margin-top: 0%;
height: 1px;
background-color: transparent;
border-bottom: 40px solid #c5027f;
border-right: 40px solid transparent;
width: 50%;
position:relative;
}
.banner:after{
content:"";
position:absolute;
height: 1px;
top:0px;
background-color: transparent;
border-bottom: 40px solid #009ee2;
border-right: 40px solid #009ee2;
width: 134rem;
z-index:-1;
}
<div class="banner">
<p style="color: white; float: left; font-size: .65em;margin-left: 10px;">54466565</p></i>
<p style="margin-left: 177%; margin-top: -5%; color: white; z-index: -1;">[email protected]</p>
</div>
謝謝,它工作完美! –
不客氣@CarmenAmaro –