我在ASP.NEt网页上有一个按钮,当我在VS2012中启动项目时显示绿色,但是当我在VS2013中启动它时,它没有显示任何颜色。
.input-control {
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
border-style: none;
}
.btn {
border-style: none;
border-color: inherit;
width: 100%;
height: 35px;
background-color: green;
}

<div class="input-control">
<input type="button" id="btnRequestInvite" value="Request Invite" name="RequestInvite" class="btn" />
</div>
&#13;
阅读此链接后:CSS background color not working我尝试在hte css标记的末尾添加以下内容,但它没有任何区别:
overflow:auto;
有什么想法吗?