-1

我想创建一个与演示图像完全相同的 html 页面:

在此处输入图像描述

我已经使用带有相应颜色和文本的 data-role=button 的锚标记创建了所有三个按钮。但现在我想要的是按照图像显示的方式对齐这些圆圈,并将它们放在 html 页面的中心。请帮我。

提前致谢。

4

2 回答 2

2

使用以下脚本更改您的 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 将任何内容居中

于 2013-07-11T11:02:34.043 回答
2

工作示例: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/

于 2013-07-11T11:12:00.313 回答