用小提琴:
http://jsfiddle.net/insertusernamehere/t6f5v/
这是我关于如何构建它的基本想法。它需要进一步改进,但目前,您可以从它开始。
CSS:
<style>
div.box {
width: 400px;
height: 200px;
margin: 20px;
border: 1px solid #ccc;
border-radius: 6px;
}
div.box > header {
height: 30px;
padding: 10px;
background: #777;
color: #333;
}
div.box > header > h1 {
float: left;
font-size: 14px;
font-weight: normal;
}
div.box > header > a {
display: inline-block;
float: right;
width: 11px;
height: 11px;
margin-top: 10px;
background: url(http://www.geocaching.com/images/stockholm/mini/close.gif) no-repeat 0 0;
}
div.box > section {
padding: 10px;
}
div.box > section form, div.box > section fieldset {
margin: 0;
padding: 0;
border: 0;
}
</style>
HTML
<div class="box">
<header>
<h1>Authorisation Required</h1>
<a href=""></a>
</header>
<section>
<p>Please verify your …
<form>
<fieldset>
<label>Username:</label>
<input type="text">
</fieldset>
</form>
</section>
</div>