31

任何人都可以帮我在下面编码吗

这是我当前的代码

<div id="loginBtn" class="loginBtn"><span>Log in</span></div>

div 标签有 loginBtn 类和 span 标签,在 html 页面中有“登录”文本

.loginBtn {
    background:url(images/loginBtn-center.jpg) repeat-x;
    width:175px;
    height:65px;
    margin:20px auto;
    border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 1px 2px #5e5d5b;
}

我使用 1px 图像创建了按钮。现在我无法在图像中间放置“登录”文本,任何人都可以帮我完成代码

文本显示在左上角。请帮我。

4

4 回答 4

29

您可以使用text-align: center; line-height: 65px;

演示

CSS

.loginBtn {
    background:url(images/loginBtn-center.jpg) repeat-x;
    width:175px;
    height:65px;
    margin:20px auto;
    border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 1px 2px #5e5d5b;
    text-align: center;  <--------- Here
    line-height: 65px;   <--------- Here
}
于 2012-11-04T10:39:21.670 回答
20

这比“行高”更可预测

.loginBtn {
    background:url(images/loginBtn-center.jpg) repeat-x;
    width:175px;
    height:65px;
    margin:20px auto;
    border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 1px 2px #5e5d5b;
}

.loginBtn span {
    display: block;
    padding-top: 22px;
    text-align: center;
    line-height: 1em;
}
<div id="loginBtn" class="loginBtn"><span>Log in</span></div>

编辑(2018):使用弹性盒

.loginBtn {
    display: flex;
    align-items: center;
    justify-content: center;
}
于 2012-11-04T14:11:30.393 回答
3

有时它会被 Padding 修复 .. 如果你可以使用它,那么它应该可以解决你的问题

<style type=text/css>

YourbuttonByID {Padding: 20px 80px; "for example" padding-left:50px; 
 padding-right:30px "to fix the text in the middle 
 without interfering with the text itself"}

</style>

它对我有用

于 2014-02-27T06:40:57.780 回答
2

我认为您可以像这样使用 Padding:希望这个可以帮助您。

.loginButton {
    background:url(images/loginBtn-center.jpg) repeat-x;
    width:175px;
    height:65px;
    margin:20px auto;
    border-radius:10px;
    -webkit-border-radius:10px;
    box-shadow:0 1px 2px #5e5d5b;
    <!--Using padding to align text in box or image-->
    padding: 3px 2px;
}
于 2014-12-20T04:23:23.960 回答