I have a button on my ASP.NEt web page which shows up green when I launch my project in VS2012 but when I launch it in VS2013 it does not show up any colour.
.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>
After reading this link: CSS background color not working I have tried adding in the following at the end of hte css tag but it makes no difference:
overflow:auto;
Any ideas?