我想在一个盒子里放一个表格,或者在表格周围有一个边框,但是我被卡住了。背景必须是白色,我在想,也许可以选择一个透明的选项。那里的任何专家都知道如何解决这个简单的想法? 附上一些代码。 Jsfiddle
<body>
<div id="border"></div>
<div id="text">Auf dem tisch</div>
</body>
body {background: white;}
#border {
border: 2px solid black;
position: absolute;
z-index: 1;
width: 100px;
height: 80px;
margin-center: 0;
padding: 15px;
border-radius: 1px;
background: navy;
opacity: 0.2;
}
#text {
margin-center: 0;
z-index: 2;
color: black;
font-weight: bold;
}
答案 0 :(得分:2)
<div class="box">
<form>
..
..
</form>
</div>
// css style to make border in center of the form
.box{
margin:0 auto;
width:600px //you can set it in %.
padding:20px;
background:#f9f9f9;
border:2px solid #333;
}