.oneDiv
{
width: 200px;
height: 200px;
display:inline-table;
}
<div>
<div class="oneDiv">1</div>
<div class="oneDiv">2</div>
<div class="oneDiv">3</div>
</div>
Wednesday, April 4, 2012
Making your ASP.NET Web API’s secure
a ASP.NET Web API that requires requests to be under the HTTPS protocol, requires an encrypted authorization token and requires traffic to only come from a predefined population of IP addresses.
http://codebetter.com/johnvpetersen/2012/04/02/making-your-asp-net-web-apis-secure/
http://codebetter.com/johnvpetersen/2012/04/02/making-your-asp-net-web-apis-secure/
Tuesday, April 3, 2012
Validating Forms without using JavaScript
http://www.cssjockey.com/web-design-tutorials/introduction-to-html5-forms-and-css3-pseudo-classes

CSS
HTML 5
CSS
input:required{ border-color:red; } input:optional{ border-color:whitesmoke; }
HTML 5
<input type="text" name="name" id="first-name" placeholder="enter you first name" required />
Subscribe to:
Posts (Atom)