0
我讓Facebook登錄,在我的網站上登錄按鈕的代碼是我可以更改我的網站中的Facebook登錄按鈕大小嗎?
<fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>
我可以改變這個按鈕,通常按鈕或改變其大小
我讓Facebook登錄,在我的網站上登錄按鈕的代碼是我可以更改我的網站中的Facebook登錄按鈕大小嗎?
<fb:login-button scope="public_profile,email" onlogin="checkLoginState();">
</fb:login-button>
我可以改變這個按鈕,通常按鈕或改變其大小
添加width屬性中的登錄按鈕:
<fb:login-button scope="public_profile,email" onlogin="checkLoginState();" width="200px">
</fb:login-button>
或者其他:
在div中添加按鈕並將css樣式應用於div。
<div class="site_login">
<div class="facebook" >
<fb:login-button scope="public_profile,email" onlogin="checkLoginState();" width="200px">
</fb:login-button>
</div>
現在,你可以申請風格是這樣的:
.facebook {
width:300px;
heigth:100px;
}
編號:Here
你可以讓用戶自定義按鈕 – Amy