デモ画像とまったく同じ html ページを作成したい:
対応する色とテキストを持つ data-role=button のアンカー タグを使用して、3 つのボタンすべてを作成しました。しかし、今私が望むのは、それらの円を画像が表示される方法で整列させ、それらを html ページの中央に配置することです。私を助けてください。
前もって感謝します。
デモ画像とまったく同じ html ページを作成したい:
対応する色とテキストを持つ data-role=button のアンカー タグを使用して、3 つのボタンすべてを作成しました。しかし、今私が望むのは、それらの円を画像が表示される方法で整列させ、それらを html ページの中央に配置することです。私を助けてください。
前もって感謝します。
以下のスクリプトを使用して css ファイルを変更します。
.ui-content {
border-width: 0;
margin: 0 auto;
overflow-x: hidden;
overflow-y: visible;
padding: 15px;
width: 150px;
}
.btn_eclipse_services {
background: none repeat scroll 0 0 #FFA521 !important;
border: 0 none !important;
border-radius: 50% 50% 50% 50% !important;
color: #FFFFFF !important;
height: 100px !important;
margin-left: 35px;
margin-top: -30px;
width: 100px !important;
}
.btn_eclipse_offers {
background: none repeat scroll 0 0 #9C1021 !important;
border: 0 none !important;
border-radius: 50% 50% 50% 50% !important;
color: #FFFFFF !important;
height: 100px !important;
margin-top: -30px;
width: 100px !important;
}
デモ:
詳細については、このリンクを確認できますCSSで何でも中央に配置する方法
作業例: http://jsfiddle.net/Ey6Yb/1/
HTML :
<div id="button-container">
<a data-role="button" id="btn_gotohomepage" class="button_eclipse">My account</a>
<a data-role="button" id="btn_gotologinpage" class="button_eclipse">Services</a>
<a data-role="button" id="btn_gotolistpage" class="button_eclipse">Offers</a>
</div>
CSS:
#button-container {
width: 145px;
height: 255px;
margin:0 auto;
}
.button_eclipse {
width: 100px !important;
height: 100px !important;
border-radius: 50% !important;
color: rgb(255,255,255) !important;
}
.button_eclipse .ui-btn-inner {
border-radius: 50% !important;
height: 80% !important;
}
.button_eclipse .ui-btn-inner .ui-btn-text {
display: block !important;
margin: 28px 0 0 -17px;
width: 95px !important;
height: 20px !important;
text-align: center !important;
/* TEXT CHANGES */
font: 14px Calibri,Arial !important;
text-shadow:1px 1px #AD4816 !important;
}
#btn_gotohomepage {
background: rgb(247,107,33) !important;
}
#btn_gotologinpage {
background: rgb(255,165,33) !important;
margin: -30px 0 0 40px;
}
#btn_gotolistpage {
background: rgb(157,16,33) !important;
margin: -30px 0 0 0;
}
編集 :
これは、水平方向と垂直方向の中心にあるソリューションです: http://jsfiddle.net/Ey6Yb/3/