如何把让button的提示文字显示出来?

实际效果

要怎么做才能显示登录?

这是html代码

这是CSS代码:

body{
    margin: 0;
    padding: 0; 
    font-family: "Microsoft YaHei","helvetica";
}
#All{
    margin: 0;
    padding: 0;
}
#Header{
    background-color:rgb(61,105,192);
    width: 1920px;
    height: 100px;
    margin: 0;
    padding: 0px;
    display: block;
}
#Login{
    background:url("../images/slide2.jpg");
    width: 1920px;
    height: 427px;
}

#Login-input-box1{
    width: 300px;
    height: 45px;
    padding-top: 135px;
    margin-left: auto;
    margin-right: auto;

}
#Login-input-box1 input{
    width: 300px;
    height: 45px;
    border-radius:10px;
    font-size: 18px;
    background:rgba(0, 0, 0, 0);
    border-color: rgb(229,247,250);
}
#Login-input-box2{
    width: 300px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}
#Login-input-box2 input{
    width: 300px;
    height: 45px;
    border-radius:10px;
    font-size: 18px;
    background:rgba(0, 0, 0, 0);
    border-color: rgb(229,247,250);
}
#Login-button-box{
    width: 150px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}
#Login-button-box button{
    width: 150px;
    height: 45px;
    border-radius:10px;
    font-size: 26px;
    background:rgba(0, 0, 0, 0);
    border-color:rgb(229,247,250); 
}
阅读 8.8k
6 个回答

<button>登录</button>

#Login-button-box button给这个选择器加个颜色试试,默认的字体颜色可能是黑色:

#Login-button-box button{
    width: 150px;
    height: 45px;
    border-radius:10px;
    font-size: 26px;
    background:rgba(0, 0, 0, 0);
    border-color:rgb(229,247,250); 
    color: red; // 加个红色试试
}

<button>登录</button>或者你可以使用<input type="button" value="登录">

新手上路,请多包涵

<button>登录</button>,你的那个<button value="登录">#</button>,是指浏览器浏览器显示不出来才显示登录两个字的,但是奇怪的是你的#为什么不出现呢。你给button增加一个color: red; 试下。

<button>登录</button>直接这样就可以了

<button>登录</button>或者用<input type="button" value="登录"/>;你的写法用错误。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏