但颜色不适用于移动浏览器
以下是捐赠横幅的代码
.Donate {
background-color: #ffee00e3;
height: 50%;
width: 100%;
padding-top: 5px;
}
.PayPalClk {
text-align: center;
}
.PayPalTxt {
text-align: center;
color: #2a2626;
padding-top: 1em;
font-size: 16px;
line-height: 0;
padding: 0;
text-indent: 0;
display: block;
}
.PayPalbtn {
align-items: center;
justify-content: center;
font-family: 'Cabin', sans-serif;
display: inline-block;
background-color: #2a2626;
/*Font styling*/
text-transform: uppercase;
color: #ffee00e3;
font-weight: 500;
font-style: normal;
font-size: 0.700rem;
letter-spacing: 0.3em;
/*End of font styling*/
padding: 14px 60px 16px;
background-size: 10px;
text-decoration: none;
margin: 0.550rem;
border: 1px solid rgb(42, 38, 38);
border-radius: 4px;
}

<section class="Donate">
<p class="PayPalTxt">Help us Raise Seed Capital In Order to improve our Products and expand our Team for a better Environment. <i class="fa fa-smile-o"></i></p>
<div class="PayPalClk">
<a class="PayPalbtn" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2PE57UH79H8TY" target="_blank">Donate<i class="fa fa-gift"></i></a>
</div>
</section>
&#13;
任何有关如何使其发挥作用的帮助或建议都会有所帮助
由于
答案 0 :(得分:1)
您已将background-color
.Donate
设置为#ffee00e3 ,而不是#ffee00 (应采用#RRGGBB格式)。
这可能会导致未定义的行为,因为每个浏览器都会以不同方式处有些浏览器可能完全忽略背景颜色(就像你在移动浏览器上看到的那样),或者某些浏览器可能会将其读作#ffee00(这是你在桌面浏览器上看到的颜色),而忽略了最后一个整数。