我有输入文本框css,我找到了一种使全局更改所有文本框设计的方法,而无需在此代码中为每个文本框分配“ cssclass”属性:
input[type=text]
{
background-color:black;
font-family:Callibri;
color:white;
}
现在我希望所有按钮都具有相同的功能,我该怎么做?
答案 0 :(得分:2)
您正在寻找MainActivity.java
。如果您希望两个输入都具有相同的样式,那么您要做的就是:
input[type=button]
答案 1 :(得分:1)
input[type="button"]
{
background-color:black;
font-family:Callibri;
color:white;
}
答案 2 :(得分:0)
不,它不起作用,我尝试过:
input[type=button] {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
background-color: #f1f1f1;
color: black;
font-size: 16px;
padding: 16px 30px;
border: none;
cursor: pointer;
border-radius: 5px;
text-align: center; }
也不起作用。